Hello,
Admob randomly check apps for violating terms and conditions etc.. One of the reasons for getting banned on admob is, showing interstitial on app load. But they allow to show a loading screen like a splash screen and the showing interstitial ad and after that loading the app content.
My apps have this loading screen > insterstitial ad > content.
My problem is, if the user closes the app just after launching the app, interstitialad_receivead is added to queue so when the app is resumed, first this sub is executed and ad shows before the loading screen even comes up. I need to eliminate this.
One option comes to my mind is adding something under interstitialad_receivead but that may also affect the normal operation( like if i add panelloading.visible=true and sleep(2000) before showing the ad in the sub, it would be ok when the sub is executed from the queue but it would not be good when everything runs normally - not queued- ).
What would be the best approach for this, what do you think ?
Admob randomly check apps for violating terms and conditions etc.. One of the reasons for getting banned on admob is, showing interstitial on app load. But they allow to show a loading screen like a splash screen and the showing interstitial ad and after that loading the app content.
My apps have this loading screen > insterstitial ad > content.
My problem is, if the user closes the app just after launching the app, interstitialad_receivead is added to queue so when the app is resumed, first this sub is executed and ad shows before the loading screen even comes up. I need to eliminate this.
One option comes to my mind is adding something under interstitialad_receivead but that may also affect the normal operation( like if i add panelloading.visible=true and sleep(2000) before showing the ad in the sub, it would be ok when the sub is executed from the queue but it would not be good when everything runs normally - not queued- ).
What would be the best approach for this, what do you think ?