Vungle Ads only show on complete restart

This is probably a silly question but I haven’t found the answer in the Docs or Forums yet.  I have Vungle on my new free version of an app (still in test mode)  It only seems to run an ad when I close the app in the background and re run.  I would like to pick when the app will run for instance watch a video to gain access to a trail feature and run an add every time they run a new session.

Can someone point me in the right direction.

Thanks

Rick

When are you calling “ad.show()”?

Rob

My Developer put it in this is the whole line its in Main.lua

ads.show( “interstitial”, { isBackButtonEnabled = true, isAutoRotation = true } );

So I should put that line in a scene that gets called more often I guess

If you’re using a scene manager, you typically don’t get back to your main.lua after app start.  So yes, you need to call ads.show() wherever you want the ad to show up.

Rob

When are you calling “ad.show()”?

Rob

My Developer put it in this is the whole line its in Main.lua

ads.show( “interstitial”, { isBackButtonEnabled = true, isAutoRotation = true } );

So I should put that line in a scene that gets called more often I guess

If you’re using a scene manager, you typically don’t get back to your main.lua after app start.  So yes, you need to call ads.show() wherever you want the ad to show up.

Rob