我将此代码用于我的科尔多瓦应用程序。我已经删除了测试线,但它仍然显示测试广告。
我的应用已在 Play 商店中,但未显示真实广告
请帮忙
var admobid = {};
// TODO: replace the following ad units with your own
if( /(android)/i.test(navigator.userAgent) ) {
admobid = { // for Android
banner: 'ca-app-pub-7394955318871729/8888928576697',
interstitial: 'ca-app-pub-7394955318871729/3765446454
};
}
function initApp() {
if (! AdMob ) { alert( 'admob plugin not ready' ); return; }
// this will create a banner on startup
AdMob.createBanner( {
adId: admobid.banner,
position: AdMob.AD_POSITION.BOTTOM_CENTER,
overlap: false,
offsetTopBar: false,
bgColor: 'black'
} );
// this will load a full screen ad on startup
AdMob.prepareInterstitial({
adId: admobid.interstitial,
autoShow: true
});
}
if(( /(ipad|iphone|ipod|android|windows phone)/i.test(navigator.userAgent) )) {
document.addEventListener('deviceready', initApp, false);
} else {
initApp();
}
嗨,我正在将此代码用于我的科尔多瓦应用程序。我已经删除了测试线,但它仍然显示测试广告。
我的应用已在 Play 商店中,但未显示真实广告
请帮忙