0

I've implemented admob for my app using recent version of google play services. But it only appears after I perform lock and unlock my phone with application running.

AdView mAdView = new AdView(this);
mAdView.setVisibility(AdView.VISIBLE);

AdRequest request = new AdRequest.Builder()
        .build();

        mAdView.loadAd(request);

PS: I've called above piece of code from c++ code of cocos2d-x using JNI.

CCAdView* ad = CCAdView::create(kCCAdSizeSmartBanner, "ID");
 ad->setAlignment(kCCHorizontalAlignmentCenter, kCCVerticalAlignmentBottom);
 addChild(ad,3);
 ad->setVisible(true);
 ad->loadAd();

Any Help will be appreciated. Thanks.

zx81
  • 41,100
  • 9
  • 89
  • 105
dg_no_9
  • 1,005
  • 1
  • 10
  • 25

1 Answers1

1

Had the same problem too. And it seems that someone finally found a solution:

AdMob won't show the banner until refresh or sign in to google plus

Community
  • 1
  • 1
X. Wo Satuk
  • 923
  • 1
  • 11
  • 18