18 lines
420 B
C
18 lines
420 B
C
|
#if __has_include(<React/RCTBridgeModule.h>)
|
||
|
#import <React/RCTBridgeModule.h>
|
||
|
#import <React/RCTEventDispatcher.h>
|
||
|
#import <React/RCTUtils.h>
|
||
|
#else
|
||
|
#import "RCTBridgeModule.h"
|
||
|
#import "RCTEventDispatcher.h"
|
||
|
#import "RCTUtils.h"
|
||
|
#endif
|
||
|
|
||
|
@import GoogleMobileAds;
|
||
|
|
||
|
@interface RNDFPInterstitial : NSObject <RCTBridgeModule, GADFullScreenContentDelegate>
|
||
|
|
||
|
@property(nonatomic, strong) GAMInterstitialAd *interstitial;
|
||
|
|
||
|
@end
|