Admob广告服务器无法填充 - 无法加载广告:3

问题描述 投票:26回答:17

我的问题是广告根本没有在我的应用,测试模式中显示。我将把这个问题专门用于测试模式,一旦我开始工作,我会担心实时广告。

发展信息

我正在使用Eclipse进行开发。

我在Android应用中使用Google Play服务和Admob设置了广告,如Google提供的在线文档中所述。

我使用addTestDevice(“xxxxxxxxxxxxxxxx”)添加了我的设备ID,并多次检查散列设备ID以确保它是正确的。

问题(见下面的日志信息)

当我在设备上运行应用程序时,根本不会显示任何广告。即使我将设备添加为测试设备,也会发生这种情况。

我已经搜索过高低,并发现了很多类似的问题,但我还没有找到这个具体问题的答案。

LogCat输出

10-28 13:56:41.659: I/Ads(1704): Starting ad request.
10-28 13:56:42.187: I/Ads(1704): No fill from ad server.
10-28 13:56:42.187: W/Ads(1704): Failed to load ad: 3
10-28 13:56:42.199: W/Ads(1704): No GMSG handler found for GMSG: gmsg://mobileads.google.com/jsLoaded?google.afma.Notify_dt=1414504602197

我的活动

   package bb.hoppingbird;

    import org.cocos2d.layers.CCScene;
    import org.cocos2d.nodes.CCDirector;
    import org.cocos2d.opengl.CCGLSurfaceView;

    import com.google.android.gms.ads.AdListener;
    import com.google.android.gms.ads.AdRequest;
    import com.google.android.gms.ads.AdSize;
    import com.google.android.gms.ads.AdView;
    import com.google.android.gms.ads.InterstitialAd;

    import android.app.Activity;
    import android.content.SharedPreferences;
    import android.media.MediaPlayer;
    import android.os.Bundle;
    import android.support.v4.view.ViewPager.LayoutParams;
    import android.util.DisplayMetrics;
    import android.view.KeyEvent;
    import android.widget.RelativeLayout;
    import android.widget.Toast;

    public class MainActivity extends Activity {

    private CCGLSurfaceView mGLSurfaceView;

    //<!-- Admob Ads Using Google Play Services SDK -->
    private static final String AD_UNIT_ID = "ca-app-pub-xxxxxxxxxxxxxxxxxxxx";
    private static final String AD_INTERSTITIAL_UNIT_ID = "ca-app-pub-xxxxxxxxxxxxxxxxxxxx";


    /** The Admob ad. */
    private InterstitialAd interstitialAd = null;
    public AdView adView = null;

    public static MainActivity app;

    public void onCreate(Bundle savedInstanceState)
    {
        app = this;

        super.onCreate(savedInstanceState);

        // set view
        mGLSurfaceView = new CCGLSurfaceView(this);


        //Ads ----------------
        // Create the adView
        RelativeLayout layout = new RelativeLayout(this);
        layout.setLayoutParams(new RelativeLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));

        //<!-- Ads Using Google Play Services SDK -->
        adView = new AdView(this);
        adView.setAdSize(AdSize.SMART_BANNER);
        adView.setAdUnitId(AD_UNIT_ID);

        // Add the adView to it
        RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(
                LayoutParams.WRAP_CONTENT,
                LayoutParams.WRAP_CONTENT);
        params.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM, RelativeLayout.TRUE);
        params.addRule(RelativeLayout.CENTER_HORIZONTAL, RelativeLayout.TRUE);

        adView.setLayoutParams(params);

        layout.addView(mGLSurfaceView);
        layout.addView(adView);

        setContentView(layout);
        //New AdRequest 
        AdRequest adRequest = new AdRequest.Builder()
        .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
        .addTestDevice("0D47C6944503F0284666D16BB79BF684")
        .build();

    // Start loading the ad in the background.
    adView.loadAd(adRequest);


        //-----------------------------------------------------Interstitial Add
        // Create an Interstitial ad.
        interstitialAd = new InterstitialAd(this);
        interstitialAd.setAdUnitId(AD_INTERSTITIAL_UNIT_ID);
        interstitialAd.setAdListener(new AdListener() {
              @Override
              public void onAdLoaded() {
                interstitialAd.show();
              }

              @Override
              public void onAdFailedToLoad(int errorCode) {
                  Toast.makeText(getApplicationContext(), "Interstitial Ads loading failed", Toast.LENGTH_SHORT).show();
              }
        });
         // Load the interstitial ad.
        //showInterstitialAds();

        //----------------------
        // set director
        CCDirector director = CCDirector.sharedDirector();
        director.attachInView(mGLSurfaceView);
        director.setAnimationInterval(1/60);

        // get display info
        DisplayMetrics displayMetrics = new DisplayMetrics();
        getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
        G.display_w = displayMetrics.widthPixels;
        G.display_h = displayMetrics.heightPixels;
        G.scale = Math.max(G.display_w/1280.0f, G.display_h/800.0f);
        G.width = G.display_w / G.scale;
        G.height = G.display_h / G.scale;

        // get data
        SharedPreferences sp = CCDirector.sharedDirector().getActivity().getSharedPreferences("GameInfo", 0);
        G.music = sp.getBoolean("music", true);
        G.sound = sp.getBoolean("sound", true);

        // create sound
        G.soundMenu = MediaPlayer.create(this, R.raw.menu);
        G.soundMenu.setLooping(true);
        G.soundGame = MediaPlayer.create(this, R.raw.game);
        G.soundGame.setLooping(true);
        G.soundCollide = MediaPlayer.create(this, R.raw.collide);
        G.soundJump = MediaPlayer.create(this, R.raw.jump);
        G.soundLongJump = MediaPlayer.create(this, R.raw.long_jump);
        G.soundSpeedDown = MediaPlayer.create(this, R.raw.speed_down);
        G.soundSpeedUp = MediaPlayer.create(this, R.raw.speed_up);
        G.soundDirection = MediaPlayer.create(this, R.raw.direction_sign);
        G.soundClick = MediaPlayer.create(this, R.raw.menu_click);
        G.soundCollect = MediaPlayer.create(this, R.raw.collect);
        G.bgSound = G.soundMenu;

        // show menu
        CCScene scene = CCScene.node();
        scene.addChild(new MenuLayer(true));
        director.runWithScene(scene);
    }  

    @Override
    public void onPause()
    {
        if (adView != null) {
              adView.pause();
            }

        super.onPause();
        G.bgSound.pause();
        CCDirector.sharedDirector().onPause();
    }

    @Override
    public void onResume()
    {
        super.onResume();

        if (adView != null) {
            adView.resume();
          }

        if( G.music ) G.bgSound.start();

        CCDirector.sharedDirector().onResume();
    }

    @Override
    public void onDestroy()
    {
        // Destroy the AdView.
        if (adView != null) {
          adView.destroy();
        }

        super.onDestroy();
        G.bgSound.pause();
        CCDirector.sharedDirector().end();
    }

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event)
    {
        if( keyCode == KeyEvent.KEYCODE_BACK )
        {
            CCDirector.sharedDirector().onKeyDown(event);
            return true;
        }
        return super.onKeyDown(keyCode, event);
    }

    public void showInterstitialAds()
    {
        runOnUiThread(new Runnable() {
            public void run() {
                 AdRequest interstitialAdRequest = new AdRequest.Builder().build();
                 interstitialAd.loadAd(interstitialAdRequest);
            }
        });
    }
}
java android eclipse admob cocos2d-android
17个回答
10
投票

只有当特定应用程序从Playstore暂停时才会出现问题。也许您可以尝试更改包名称以及新的Admob Id。由于符合性,特定的admob id也有可能被暂停。


0
投票

我今天也有这个问题。我的应用程序没有暂停,但apk名称更改确实有效。我们已重命名测试应用程序以将其发布到生产中;我们改变了apk名称。这搞砸了我们在MoPub和Admob上的广告填充。


0
投票

从Admob服务器禁用广告,您的代码正常,尝试更改包名称,并查看是否显示广告。然后联系admob以查看问题。


0
投票

在我的情况下,这是因为从该广告不支持的区域请求地理限制广告而导致的错误。如果我将广告请求包的位置硬编码到可接受的区域内,或者根本不在请求中包含位置,那么广告就会被渲染得很好;否则我在控制台中遇到与OP相同的错误。


0
投票

在我的情况下,我的横幅广告在某些具有高API的设备上有响应代码3,尤其是宽屏幕(我使用了智能横幅尺寸),从com.google.android.gms.adscom.google.firebase:firebase-ads(如果你使用Firebase)改变了依赖性解决了我的问题。


0
投票

在我的情况下,我正在测试使用模拟器并得到相同的错误。换到手机后一切正常。

尝试其他测试设备。


0
投票

基本上只需尝试将您的测试设备ID传递给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();

在没有测试设备ID ad Builder请求的情况下,您可以在logCat中找到您的测试转移ID:

我/广告:使用AdRequest.Builder.addTestDevice(“TEST_DEVICE_ID”)在此设备上投放测试广告。


0
投票

这可能是因为您没有等待广告加载。

对我来说,实施AdLoadedAdListener方法完成了这项工作。

    mAdInterstitial.loadAd(AdRequest.Builder().addTestDevice("XXXXXXX").build())
    mAdInterstitial.adListener = object : AdListener() {
        override fun onAdLoaded() {
            mAdInterstitial.show()
        }
    }

-2
投票

试试这个:

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

9
投票

如果您创建adunit并立即使用它可能会显示此错误,请尝试在30分钟或更长时间后加载广告。


4
投票

您需要使用Google为您提供的ID来获取当前的测试设备。你可以在logcat中找到它,只需找到这样的东西:

Ads: Use AdRequest.Builder.addTestDevice("903A70A3D439E256BAED43E65A79928E") to get test ads on this device.

3
投票

库存的运气也有可能。我也因此而面对。 failed to load ad : 3


2
投票

如果您的AdMob帐户仅针对横幅广告进行了配置,并且您使用的是插页式广告,则可能会遇到此问题。我的2美分。


2
投票

在我的情况下,我发现我的结算地址未经过验证,广告被屏蔽。验证帐单地址会自动得到修复。 https://www.google.com/adsense/


1
投票

如果您的应用程序支持Designed for Families。

Bundle extras = new Bundle();
extras.putBoolean("is_designed_for_families", true);

AdRequest request = new AdRequest.Builder()
        .addNetworkExtrasBundle(AdMobAdapter.class, extras)
        .build();

1
投票

我正在Galaxy S4上测试,后来我的朋友在Note 2上测试了它并没有显示横幅广告。因此问题是测试设备Id。如果您正在测试,请确保测试设备ID是您正在测试的设备。


0
投票

我也有这个问题。直到我去Admob.com并“手动”添加我的应用程序,所以我可以得到我的“广告单元ID”。我把这个广告单元ID字符串作为我的adView.setAdUnitId调用的参数。然后我安装并打开了我通过Eclipse生成的“发布”APK。文件>导出>导出Android应用程序

© www.soinside.com 2019 - 2024. All rights reserved.