从AdMob平台到使用Cordova框架编写的应用程序中实施广告时,我遇到了问题。一开始,我安装了cordova-admob插件。我已经将下面的代码粘贴到index.js文件中。将应用程序编译为android版本后,没有广告出现。请帮忙。
function onDeviceReady() {
document.removeEventListener('deviceready', onDeviceReady, false);
// Set AdMobAds options:
admob.setOptions({
publisherId: "MY APP ID", // Required
interstitialAdId: "MY AD ID" // Optional
});
// Start showing banners (atomatic when autoShowBanner is set to true)
admob.createBannerView();
// Request interstitial (will present automatically when autoShowInterstitial is set to true)
admob.requestInterstitialAd();
}
document.addEventListener("deviceready", onDeviceReady, false);