Vivek Warde
Vivek Warde

Reputation: 1508

AdMob only displaying Test Banner

I implemented AdMob from https://developers.google.com/mobile-ads-sdk/docs/admob/android/quick-start?hl=en_US which was running fine as expected during the testing.

enter image description here

I thought this banner add will be replaced by the actual ads when downloaded from play store, but this doesn't happened !

How to make it happen ?

Am I missing something ?

What should I do ?

Upvotes: 2

Views: 2766

Answers (2)

simonee
simonee

Reputation: 11

Make sure you didn't set "isTesting" to true.

Upvotes: 1

Psypher
Psypher

Reputation: 10829

You have to remove the below lines if you have them in your app, it tells admob that the device is used for testing.

.addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
.addTestDevice("XXXXXXXXXXXXXXXXXXXXXXXXXXXX")

Upvotes: 3

Related Questions