use of com.facebook.ads.InterstitialAd in project react-native-fbads by callstack.
the class InterstitialAdManager method loadAd.
@ReactMethod
public void loadAd(String placementId, Promise p) {
ReactApplicationContext reactContext = this.getReactApplicationContext();
mViewAtOnce = true;
mPromise = p;
mInterstitial = new InterstitialAd(reactContext, placementId);
mInterstitial.loadAd();
}
Aggregations