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