Skip to content

Instantly share code, notes, and snippets.

@LuffyAnshul
Last active June 6, 2021 05:21
Show Gist options
  • Save LuffyAnshul/afb4594b2700ba5d61bb918c120db280 to your computer and use it in GitHub Desktop.
Save LuffyAnshul/afb4594b2700ba5d61bb918c120db280 to your computer and use it in GitHub Desktop.
Interstitial ADs
import { InterstitialAd, TestIds, AdEventType} from '@react-native-firebase/admob';
...
showInterstitialAd = () => {
// Create a new instance
const interstitialAd = InterstitialAd.createForAdRequest(TestIds.INTERSTITIAL);
// Add event handlers
interstitialAd.onAdEvent((type, error) => {
if (type === AdEventType.LOADED) {
interstitialAd.show();
}
});
// Load a new advert
interstitialAd.load();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment