最近在上传两个 Apk 版本后,检查了预发布报告,我在报告中看不到任何广告。我们使用在旧版本上运行良好的广告中介 (Appodeal)。可能是谷歌 Firebase 自动化不再像以前那样显示广告了吗?或者这段代码有问题。
<script type="text/javascript">
function onDeviceReady() {
var appKey = "xxx";
document.removeEventListener('deviceready', onDeviceReady, false);
Appodeal.setOnLoadedTriggerBoth(adTypes, true);
Appodeal.setAutoCache(Appodeal.INTERSTITIAL, false);
Appodeal.initialize(appKey, Appodeal.INTERSTITIAL | Appodeal.BANNER);
Appodeal.cache(Appodeal.INTERSTITIAL);
Appodeal.enableInterstitialCallbacks(true);
Appodeal.show(Appodeal.BANNER_BOTTOM);
//after init
Appodeal.isLoaded(Appodeal.INTERSTITIAL, function(result){
if (result == true)
Appodeal.show(Appodeal.INTERSTITIAL);
})
};
</script>