1// Copyright © 2018 650 Industries. All rights reserved. 2 3#import "EXScopedReactNativeAdapter.h" 4#import "EXUnversioned.h" 5 6@interface EXReactNativeAdapter (Protected) 7 8- (void)startObserving; 9 10@end 11 12@implementation EXScopedReactNativeAdapter 13 14- (void)setBridge:(RCTBridge *)bridge 15{ 16 if (bridge) { 17 [super setBridge:bridge]; 18 [self setAppStateToForeground]; 19 } 20} 21 22- (void)startObserving 23{ 24 // EXAppState and EXKernel handle this for us 25} 26 27@end 28