Hello, i'm new. Trying to get Test Device ID from my catlog (wanna test
interstitial ad in my app), but all i get after running app on emulator is:
07-07 07:40:25.783 2724-3448/com.google.android.gms I/Ads: Parental control value is stale. Refreshing.
07-07 07:40:25.783 2724-3448/com.google.android.gms W/Ads: Play store is not installed or the service for parental controls is not available.
07-07 07:40:25.783 2724-3448/com.google.android.gms I/Ads: Initialized AdMob in container 10.9.30 (470-155807809)
07-07 07:44:07.682 4218-4218/ru.vipmedukvie.vipme I/Ads: Starting ad request.
07-07 07:44:07.684 4218-4218/ru.vipmedukvie.vipme I/Ads: This request is sent from a test device.
07-07 07:44:18.515 4218-4468/ru.vipmedukvie.vipme W/Ads: There was a problem getting an ad response. ErrorCode: 0
07-07 07:44:18.523 4218-4218/ru.vipmedukvie.vipme W/Ads: Failed to load ad: 0
Code for AndroidLauncher which starting ad request:
interstitial = new InterstitialAd(this);
interstitial.setAdUnitId("ca-app-pub-9506272630021404/5753886777");
AdRequest adRequesti = new AdRequest.Builder()
.addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
.addTestDevice("0123456789ABCDEF")
.build();
interstitial.loadAd(adRequesti);
Guess the thing is in this
"W/Ads: Play store is not installed or the service for parental controls is not available." Why do i get this, and finally how can i get test device id :)?
Google play servises are installed in SDK Tools.
Thanks.