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

前端 未结 17 2330
失恋的感觉
失恋的感觉 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: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();
    

提交回复
热议问题