Admob在Android工作室中显示测试广告,但在Google Play中根本没有广告

时间:2016-05-31 13:08:05

标签: java android admob

清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="hightimes.fourtwenty">
<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="4:20"
    android:theme="@style/AppTheme" >
    <!--This meta-data tag is required to use Google Play Services.-->
    <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/>
    <activity android:name=".MainActivity" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <!--Include the AdActivity configChanges and theme. -->
    <activity android:name="com.google.android.gms.ads.AdActivity"
        android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
        android:theme="@android:style/Theme.Translucent" />
</application>

的java

MobileAds.initialize(this,"@string/banner_app_id");

mAdView = (AdView) findViewById(R.id.myAdView);

AdRequest adRequest = new AdRequest.Builder()

.build();


mAdView.loadAd(adRequest);

布局文件

    <com.google.android.gms.ads.AdView
    android:id="@+id/myAdView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_alignParentBottom="true"
    ads:adSize="BANNER"
    ads:adUnitId="@string/banner_ad_unit_id"
    />

Gradle脚本文件

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.google.android.gms:play-services-ads:9.0.0'
compile 'com.android.support:design:23.4.0'
}


apply plugin: 'com.google.gms.google-services'

测试广告使用Android工作室正常加载,实时Google Play广告根本不会在不同的测试设备和位置展示。我在admob应用管理页面中链接了该广告,并将其显示为1个有效广告。我正在使用admob生成的appID和adunitID,而且我还包含了google-services.json文件。我唯一能想到的是,它要么花费几天时间来填充广告,要么我的应用程序显示与药物相关的资料和它有+18的评级,但我从来没有收到来自admob的通知,也没有看到帐户被暂停的任何内容。感谢先进的任何帮助!

1 个答案:

答案 0 :(得分:0)

  

MobileAds.initialize(此,&#34; @串/ banner_app_id&#34);

您正在传递字符串&#34; @ string / banner_app_id&#34;作为应用程序ID。

  

要查找与您的应用程序对应的应用程序ID,请单击AdMob帐户页面上设置下拉列表(位于右上角)下的应用程序管理选项。应用程序ID的格式为ca-app-pub-XXXXXXXXXXXXXXXX~NNNNNNNNNN。