You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I added Interstitial ads in my app and published it, google reject It
Issue: Violation of Interfering with Apps, Third-party Ads, or Device Functionality policy
before that I had simple banner and all was good
I think the probleme is that Interstitial ads block the phone's back button
here is the code that I used
nativescript with Vue
created(){
showInterstitialAds() {
setTimeout(function() {
admob
.preloadInterstitial({
testing: true,
androidInterstitialId: "ca-app-pub-3940256099942544/1033173712", // add your own
keywords: ["keyword","keyword2"], // add keywords for ad targeting
})
.then(
function() {
admob.showInterstitial();
}
);
}, 1);
}
The text was updated successfully, but these errors were encountered:
When I added Interstitial ads in my app and published it, google reject It
Issue: Violation of Interfering with Apps, Third-party Ads, or Device Functionality policy
before that I had simple banner and all was good
I think the probleme is that Interstitial ads block the phone's back button
here is the code that I used
nativescript with Vue
The text was updated successfully, but these errors were encountered: