0

There are some cases with the issue of showing Admob. But they did not help. So implementation is that in MyApp.java I am starting the downloading video and initialize instance.

mRewardedVideoAd = MobileAds.getRewardedVideoAdInstance(this);
    mRewardedVideoAd.loadAd(context.
                    getString(R.string.ad_unit_id_real),
            new AdRequest.Builder().build());

Then in regular activity I am with help of that instance checking if videoAd is loaded. And then show it to the user. Here is the code

if (MyApp.mRewardedVideoAd.isLoaded()){
                        showAdDialog();
                    }

I have added my Id's in Manifest. My test video works correctly. But real video is not working? Does that means the problem in the code? Or I need to make something on Ad account side?

It might help. I was trying to debug it but couldnt figure out can it be the reason of the issue enter image description here

Bo Z
  • 2,359
  • 1
  • 13
  • 31
  • real ads will only show on production apps.... meaning if you use your production key on an app you built from Android Studio, then it will NOT show a prod ad. You have to build a signed APK and then run it with the production key. – letsCode Oct 01 '19 at 12:45
  • @soldfor i did. it is published on playmarket and I upload it on real device as apk – Bo Z Oct 01 '19 at 15:06

0 Answers0