Admob is not working in my APP, It’s working in test mode only but production mode is not working any how, whenever I changed id: “ca-app-pub-xxxxxxxxxxxx/xxxxxxxxxxxxxx”, Its stopped working.
showBanner() {
let bannerConfig: AdMobFreeBannerConfig = {
isTesting: true// Remove in production
autoShow: true,
id: "ca-app-pub-xxxxxxxxxxxx/xxxxxxxxxxxxxx",
};
this.admob.banner.config(bannerConfig);
this.admob.banner.prepare().then(() => {
// success
}).catch(e => console.log(e));
}