我一直在尝试使用 Phonegap Build 使用 HTML、CSS 和 JS 制作应用程序,但 admob 广告不会显示。我展示广告的 JS 代码是:
<script src="code.js"></script>
<script type="text/javascript">
function onDeviceReady() {
document.removeEventListener('deviceready', onDeviceReady, false);
// Set AdMobAds options:
admob.setOptions({
publisherId: "ca-app-pub-3940256099942544/6300978111", // Required
interstitialAdId: "ca-app-pub-3940256099942544/1033173712", // Optional
autoShowBanner: true, // Optional
autoShowRInterstitial: false, // Optional
});
// Start showing banners (atomatic when autoShowBanner is set to true)
admob.createBannerView();
// Request interstitial ad (will present automatically when autoShowInterstitial is set to true)
function showad(){
admob.requestInterstitialAd();
}
}
document.addEventListener("deviceready", onDeviceReady, false);
</script>
我的 config.xml 文件中还有 Phonegap Build 插件以及对 gap 标签的支持,但是当其他一切正常时,广告就不会显示。请帮忙。