In scene:show I call the following to show the banner and it works.
ads.show( "banner", {appId="ca-app-pub-bannerID"} )
I now want to show an interstitial every time a button is pressed. This button does not exit the activity. Its still the same activity. So inside the button function I call
ads.show( "interstitial", {appId="ca-app-pub-interstitialID"} )
notice the different appIds. Interstitial does not show. Instead the banner refreshes itself.
I also tried
ads.hide() ads.show( "interstitial", {appId="ca-app-pub-interstitialID"} )
Same result. Banner refreshes. How can I solve this? Also the banner should still be visible when the interstitial ad is closed.