admob在其他Android应用商店,印象数不会改变

时间:2014-08-19 19:26:09

标签: android admob opera impressions

AdMob存在以下问题。

我的应用程序发布在Google Play,Opera Mobile Store和GetJar上。它有来自Opera Store的30下载,来自GetJar的120下载,但AdMob仅显示和计算来自Google Play下载的展示次数和点击次数。问题是,过去1周内其他应用商店的下载次数仅为150次,并且不会计算单次展示次数。

我的代码有什么问题或其他问题吗?

我删除了 addTestDevice 方法调用。

private AdView adView;

@Override
protected void onCreate(Bundle savedInstanceState) {
...
        adView = (AdView) this.findViewById(R.id.adView);
        AdRequest adRequest = new AdRequest.Builder().build();

        adView.loadAd(adRequest);
...
}

@Override
protected void onResume() {
...
        if (adView != null) {
                adView.resume();
        }

        super.onResume();
}

@Override
protected void onPause() {

        if (adView != null) {
                adView.pause();
        }
        super.onPause();
}

@Override
protected void onDestroy() {
        super.onDestroy();

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

<com.google.android.gms.ads.AdView 
    android:id="@id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_alignParentBottom="true"
    ads:adUnitId="ca-app-pub-*******/******"
    ads:adSize="BANNER"/>

0 个答案:

没有答案