我想在博览会管理的应用程序上添加插页式广告。因此,如展览文档https://docs.expo.io/versions/latest/sdk/admob/中所述,我已经实现了代码。但这给了我以下警告。
[未处理的承诺被拒绝:错误:本机方法ExpoAdsAdMobInterstitialManager.requestAd期望使用0个参数,但收到1个参数]
横幅广告运行正常
showInterstitial = async () => {
AdMobInterstitial.setAdUnitID('ca-app-pub-xxxxxxxxxxxxxxx');// my ad unit id
AdMobInterstitial.setTestDeviceID('EMULATOR');
await AdMobInterstitial.requestAdAsync({ servePersonalizedAds: true });
await AdMobInterstitial.showAdAsync();
}