1 2 #import "EXReactAppManager.h" 3 #import "EXReactAppExceptionHandler.h" 4 5 NS_ASSUME_NONNULL_BEGIN 6 7 @interface EXReactAppManager () 8 9 @property (nonatomic, strong) NSDictionary *extraParams; 10 11 // versioned 12 @property (nonatomic, strong) id versionManager; 13 @property (nonatomic, assign) BOOL hasBridgeEverLoaded; // has the bridge ever succeeded at loading? 14 15 @property (nonatomic, strong) NSString *versionSymbolPrefix; 16 @property (nonatomic, strong, nullable) NSString *validatedVersion; 17 18 @property (nonatomic, strong) EXReactAppExceptionHandler *exceptionHandler; 19 20 - (NSDictionary *)launchOptionsForBridge; 21 22 @end 23 24 NS_ASSUME_NONNULL_END 25