I have setup AdMob ads in my app and tested if they work. Now I also have added the Leadbolt network to the same Ad unit in AdMob but I am not getting Leadbolt ads to show up and am wondering if I'm doing something wrong or this is not even possible to test when I build test requests fro AdMob. This is how I request a test add.
AdRequest adRequest = new AdRequest.Builder()
.addTestDevice("XXXXXXXXX")
.build();
Now I have done everything the Leadbolt setup tells me.
- I included Leadbolt on the add for my app on AdMob with my correct API key and [ inapp ] as location code.
- I have setup a high floor eCPM at
$20.00, I also tried with$0,01. - I still am requesting ads from AdMob for a testing device:
new AdRequest.Builder().addTestDevice("XXXX").build();But I have tried a couple of times without testing. - this with Gradle for my android module.
I have added the activity to AndroidManifest.xml
<activity android:configChanges="keyboard|keyboardHidden|orientation|screenSize" android:name="com.apptracker.android.module.AppModuleActivity" android:hardwareAccelerated="false"> </activity>I have also set the permissions:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Have I missed anything? If not then how can I test ads from a 3th party network when I am not allowed to request real ads in a development state?