“This plugin is not endorsed or sponsored by Yandex LLC. This is an independent, unofficial plugin. “
Defold native extension which provides access to Yandex Mobile Ads SDK functionality on Android(only).
You can use the Yandex Mobile Ads SDK for Defold extension in your own project by adding this project as a Defold library dependency. Open your game.project file and in the dependencies field under project add:
https://github.com/osov/defold-yandex-sdk-ads/archive/main.zip or point to the ZIP file of a specific release.
Please, read Android API docs
yandexads.set_callback(listener)
yandexads.initialize()
yandexads.load_banner(adUnit)
yandexads.is_banner_loaded()
yandexads.show_banner()
yandexads.hide_banner()
yandexads.destroy_banner()
yandexads.load_interstitial(adUnit)
yandexads.is_interstitial_loaded()
yandexads.show_interstitial()
yandexads.load_rewarded(adUnit)
yandexads.is_rewarded_loaded()
yandexads.show_rewarded()
yandexads.MSG_ADS_INITED
yandexads.MSG_INTERSTITIAL
yandexads.MSG_REWARDED
yandexads.MSG_BANNER
yandexads.EVENT_LOADED
yandexads.EVENT_ERROR_LOAD
yandexads.EVENT_SHOWN
yandexads.EVENT_DISMISSED
yandexads.EVENT_CLICKED
yandexads.EVENT_IMPRESSION
yandexads.EVENT_NOT_LOADED
yandexads.EVENT_REWARDED
yandexads.EVENT_DESTROYED
yandexads.POS_NONE
yandexads.POS_TOP_LEFT
yandexads.POS_TOP_CENTER
yandexads.POS_TOP_RIGHT
yandexads.POS_BOTTOM_LEFT
yandexads.POS_BOTTOM_CENTER
yandexads.POS_BOTTOM_RIGHT
yandexads.POS_CENTER
- set up an event handling callback
- run initialization
- load desired ad format
local function listener(self, message_id, message)
if message_id == yandexads.MSG_ADS_INITED then
-- extension is ready to load ads
end
end
yandexads.set_callback(listener) -- (1)
yandexads.initialize() -- (2)
local function listener(self, message_id, message)
if message_id == yandexads.MSG_ADS_INITED then
yandexads.load_banner('R-M-DEMO-300x250')
end
if message_id == yandexads.MSG_BANNER then
if message.event == yandexads.EVENT_LOADED then
yandexads.show_banner(yandexads.BOTTOM_CENTER) -- optional position(default BOTTOM_CENTER)
end
end
end
Fixed parameters are set: size - AdSize.flexibleSize(320,50)
local function listener(self, message_id, message)
if message_id == yandexads.MSG_ADS_INITED then
yandexads.load_interstitial('R-M-DEMO-interstitial')
end
if message_id == yandexads.MSG_INTERSTITIAL then
if message.event == yandexads.EVENT_LOADED then
yandexads.show_interstitial()
end
end
end
local function listener(self, message_id, message)
if message_id == yandexads.MSG_ADS_INITED then
yandexads.load_rewarded('R-M-DEMO-rewarded-client-side-rtb')
end
if message_id == yandexads.MSG_REWARDED then
if message.event == yandexads.EVENT_LOADED then
yandexads.show_rewarded()
end
end
end