无法让 AdMob 在 Android 上运行:ErrorCode 0

Cannot get AdMob to work on Android : ErrorCode 0

我对此感到非常绝望。我按照 Google 在 https://developers.google.com/admob/android/quick-start 网页上给出的说明进行操作,但它仍然不起作用我的代码(或至少与 AdMob 相关的部分) menu.java class:

中的实例化
AdView adView = (AdView) findViewById(R.id.myaddview); //add the cast
AdRequest adRequest = new AdRequest.Builder()
            .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
            .build();
adView.loadAd(adRequest);

XML 中的横幅 对于 "banner_ad_unit_id",我使用了从我的 AdMob 帐户获得的 ID。我什至尝试为不同的应用制作多个不同的广告(不同的 adID 但仍然得到相同的结果)

 <com.google.android.gms.ads.AdView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    ads:adSize="SMART_BANNER"
    android:id="@+id/myaddview"
    ads:adUnitId="@string/banner_ad_unit_id"
    android:layout_below="@+id/button4"/>

我的清单片段:

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme">
    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

    <activity
        android:name="com.google.android.gms.ads.AdActivity"
        android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />

Gradle 的 build.gradle :

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.0.0'
    compile 'com.google.android.gms:play-services:8.1.0'
}

并且 minSDK 是 21(用于测试目的(但它大于 9,所以应该不是问题)

我还从 SDK 管理器更新了 Google 播放服务,我在 logcat 中得到了这个:

09-28 00:53:59.798  15533-15693/com.example.slaven.toplel W/Ads﹕ There was a problem getting an ad response. ErrorCode: 0
09-28 00:53:59.816  15533-15533/com.example.slaven.toplel W/Ads﹕ Failed to load ad: 0

有趣的是,无论我使用什么代码,我都会遇到这个错误:我什至在 https://github.com/googleads/googleads-mobile-android-examples 上使用了 Google 的 adMob 示例,但在 LogCat.在我 运行 我的应用程序之后,我转到我的 AdMob 帐户并注意到有 0 个 AdMob 网络请求。 如有任何帮助,我们将不胜感激!

根据Google:

Something happened internally; for instance, an invalid response was received from the ad server.

我不确定您可以在这里做什么。 查看链接 Banner Ads and AdRequest Class.

我在 phone 上安装的自定义 ROM 似乎包含 AdBlock 插件。所以我改用 Cyanogenmod 并且没有进一步的问题。