My adsense account is disabled but i didn't receive an email from adsense or admob yet. I think it was disabled because of this code.. I have two admob ads in my app. BannerAd and interstitial . Banner Ad is in bottom of the app. interstitial ad opens when user click add button and I used this code to re generate the ad request. Can someone tell me this is because their problem or this code problem..
this is my app - myapp
//On top of the code
import firebase from 'react-native-firebase';
const advert = firebase.admob().rewarded('my-id');
const Banner = firebase.admob.Banner;
const AdRequest = firebase.admob.AdRequest;
const request = new AdRequest();
const request2 = new AdRequest();
request.addKeyword('foobar');
request2.addKeyword('foo').addKeyword('bar');
advert.loadAd(request2.build());
...
//Add button to add stickers and load the interstitial ad after clicking a button.
addSticker(val1,val2){
...
setTimeout(() => {
if (advert.isLoaded()) {
advert.show();
advert.on('onAdClosed', () => {
advert.loadAd(request2.build());
});
} else {
// skip...
}
}, 1500)
}