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

前端 未结 17 2351
失恋的感觉
失恋的感觉 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:45

    try this:

    MobileAds.initialize(this, getString(R.string.admob_app_id));
    AdView mAdView = findViewById(R.id.adView);
    AdRequest adRequest = new AdRequest.Builder().build();      
    mAdView.loadAd(adRequest);
    

提交回复
热议问题