Hey Guys!
I’m using chartboost to show interstitials in my android game! I want to show them when you start the game or if the game is over
on the title screen. The problem is sometimes the ads also pop up during the game which is a big pain in the a**.
The implementation looks like this:
void Start () {
CBBinding.init ();
CBBinding.forceOrientation(ScreenOrientation.Portrait);
CBBinding.showInterstitial(null);
CBBinding.cacheInterstitial(null);
}
There is actually a method CBBinding.hasCachedInterstitial() that allows to check if the ad is cached, but I figure that if I use that, I will not be able to show the interstitial at the start of the game?
Has anyone of you guys found a solution for this??
thanks,
Sebastian