AdMob

About AdMob

Type: Gideros plugin
License: BSD License
Supported platforms:

 

Categories:
  • Ads

Gideros AdMob Plugin for Android to display and manipulate AdMob ads.

You can find example Gideros project, example Android project with plugin source and plugin folder for installation.

Code example:

require 'admob'
 
admob.loadAd('somestring')
 
admob.setAlignment('center', 'top')
 
Timer.delayedCall(15000, function()
    admob.removeAd()
end)