#import "AppDelegate.h" #import #import @interface AppDelegate () @end @implementation AppDelegate - (void)awakeFromNib { [super awakeFromNib]; _bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:nil]; } - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { // Insert code here to initialize your application } - (void)applicationWillTerminate:(NSNotification *)aNotification { // Insert code here to tear down your application } #pragma mark - RCTBridgeDelegate Methods - (NSURL *)sourceURLForBridge:(__unused RCTBridge *)bridge { return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"example/index" fallbackResource:@"main"]; // .jsbundle; } @end