首页 > 解决方案 > 在 Cordova 中实施 AdMob 广告

问题描述

我在从 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);

标签: javascripthtmlcssadmob

解决方案


推荐阅读