About Store Forum Documentation Contact



Post Reply 
Admob example needed
Author Message
andrake Offline
Member

Post: #1
Admob example needed
Hi i try to use admob but it just not show me my ad
my code is


void initAdvertizement()
{
Ads.testMode(true);
Ads.bannerCreate("ca-app-pub-7453333362773416/9588355081", Advertisement.BANNER);
Ads.bannerPos(0, 0);
Ads.bannerVisible(true);
Ads.bannerShow();
//Ads.bannerState();
Ads.fsCreate("ca-app-pub-7453333362773416/9588355081");
Ads.fsShow();
}

i use this function in Init() cycle
also it show to me State is 0;

may be it should shown only on android device...not on Winapp
(This post was last modified: 04-12-2014 01:53 PM by andrake.)
04-12-2014 01:23 PM
Find all posts by this user Quote this message in a reply
andrake Offline
Member

Post: #2
RE: Admob example needed
now it show ads on android but i do not see count of ad shown that in my admob account. test mode i do not switch on.
04-12-2014 03:55 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #3
RE: Admob example needed
Ads.bannerVisible(true);
Ads.bannerShow();
those do the same, no need to call twice

AdMob website is not updated real-time to my knowledge.
04-12-2014 09:44 PM
Find all posts by this user Quote this message in a reply
Post Reply