Hi!
We've implemented this library to show Interstitial ads between screens and we noticed the following issues:
On both platforms the interstitial ad shows up only once;
On Android, whenever we call isReady, the app crashes;
This is our setup:
React Native v.73.0
iOS Simulator 17.2
Android Emulator API 34
After a debugging session, we managed to fix up both issues as follow:
On Android there was a problem with isReady callback parameter. Right now this library attempts to pass mInterstitialAd directly, but it is an object and it isn't possible to return an instance as a callback parameter;
On iOS there was a problem with requestAd, the condition to check if we can request a new add should be inverted;
Hi! We've implemented this library to show Interstitial ads between screens and we noticed the following issues:
This is our setup:
After a debugging session, we managed to fix up both issues as follow:
Here you can find our patch that we created using patch-package