Quick Links: Download Gideros Studio | Gideros Documentation | Gideros Development Center | Gideros community chat | DONATE
Latest Implementation of Ads? — Gideros Forum

Latest Implementation of Ads?

How to implement ads like admob in gideros games nowadays? There are existing tutorials but dated way back in 2012.

Comments

  • KoeosKoeos Member
    I almost finished my game but i am stuck with this
  • You're in luck! This is automated nowadays.

    1. Right click "Plugins"
    2. Add the "Ads" plugin
    3. Right click the Ads plugin and fill in the data for the networks you are using (including Admob)
    4. Export!

    http://docs.giderosmobile.com/interface/ads

    Likes: SinisterSoft

    My Gideros games: www.totebo.com
    +1 -1 (+1 / -0 )Share on Facebook
  • olegoleg Member
    edited March 2018
    my player for the test of advertising: https://play.google.com/gideros
    require "ads"
     
    			--initialize admob
     
    			admob = Ads.new("admob")
     
    			admob:setKey("ca-app-pub-464563456345645")
    			--admob:enableTesting(true) 
    			mybanner @ |admob:showAd("banner","ca-app-pub-4664564")|  --  interstitial
    			admob:setAlignment("center", "top") 
    			--admob:setVisible(visible)
    -----------------------------------
     
     
    mybanner
     
    --[[
    Timer.delayedCall(15000, function()
        admob.removeAd()
    end)
     
    ]]
    my games:
    https://play.google.com/store/apps/developer?id=razorback456
    мій блог по гідерос https://simartinfo.blogspot.com
    Слава Україні!
    +1 -1 (+1 / -0 )Share on Facebook
Sign In or Register to comment.