Admob No fill from ad server - failed to load ad: 3

前端 未结 17 2189
失恋的感觉
失恋的感觉 2020-12-17 07:59

My issue is that ads are not being displayed at all in my app, test mode or not. I am going to keep this question specific to test mode, and once I get that working I will w

相关标签:
17条回答
  • 2020-12-17 08:28

    In my case my banner ads have response code 3 on some devices with high API and especially with wide screen (I have used smart banner size), changing dependcy from com.google.android.gms.ads to com.google.firebase:firebase-ads (In case you are using Firebase) solved my problem.

    0 讨论(0)
  • 2020-12-17 08:29

    The issues comes only if that particular app is suspended from playstore. Maybe you can try changing the package name and and also with new Admob Id.There is a chance that particular admob id can also be suspended due to compliances.

    0 讨论(0)
  • 2020-12-17 08:30

    If you app support Designed for Families.

    Bundle extras = new Bundle();
    extras.putBoolean("is_designed_for_families", true);
    
    AdRequest request = new AdRequest.Builder()
            .addNetworkExtrasBundle(AdMobAdapter.class, extras)
            .build();
    
    0 讨论(0)
  • 2020-12-17 08:30

    Basically just try pass your test device id to adBuilder :

    /** adRequest Object For test device */
    AdRequest adRequest = new AdRequest.Builder().addTestDevice("TEST_DEVICE_ID").build();
    
    /** adRequest Object For Production Device*/
    AdRequest adRequest = new AdRequest.Builder().build();
    

    You can find your test divece id in logCat after without test divece id adBuilder request:

    I/Ads: Use AdRequest.Builder.addTestDevice("TEST_DEVICE_ID") to get test ads on this device.

    0 讨论(0)
  • 2020-12-17 08:31

    If your AdMob account is only configured for banner ads and you're using interstitial ads, you may get this problem. My 2 cents.

    0 讨论(0)
  • 2020-12-17 08:32

    I was testing on Galaxy S4, later my friend tested on Note 2 and it did not show the banner ad. Hence the problem was test device Id. If you are testing then make sure the test device ID is of the device you are testing on.

    0 讨论(0)
提交回复
热议问题