I added the admob test in my application, as the setup guide was directed and everything works well (in the emulator and on my device). To stop the test mode and upload my new apk to the market, I need to erase the test code from my .java file, right? I tried it and I downloaded my .apk file on my device (from mass storage), but I can not see any comments ... what am I wrong?
TEST CODE:
AdManager.setTestDevices( new String[] {
AdManager.TEST_EMULATOR,"xxxxxxxxxxxxxxxxxxxxxxxxx",});
AdView adView=(AdView)findViewById(R.id.ad);
adView.requestFreshAd();
I checked the LogCAT view:
01-20 14:13:38.938: INFO/AdMobSDK(19582): No fill. Server replied that no ads are available (373ms)
source
share