Guest User

Untitled

a guest
Jan 22nd, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. NSURL *jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
  2.  
  3. [ReactNativeNavigation bootstrap:jsCodeLocation launchOptions:launchOptions];
  4.  
  5. RNCallKit *rncallkit = [[RNCallKit alloc] init];
  6. RCTBridge *bridge = [[RCTBridge alloc] initWithBundleURL:jsCodeLocation
  7. moduleProvider:^{ return @[rncallkit]; }
  8. launchOptions:launchOptions];
  9. RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
  10. moduleName:@"MyApp"
  11. initialProperties:nil];
Add Comment
Please, Sign In to add comment