diff --git a/examples/basic/ios/videoplayer/AppDelegate.mm b/examples/basic/ios/videoplayer/AppDelegate.mm index f06f3669..e263372b 100644 --- a/examples/basic/ios/videoplayer/AppDelegate.mm +++ b/examples/basic/ios/videoplayer/AppDelegate.mm @@ -44,7 +44,7 @@ static NSString *const kRNConcurrentRoot = @"concurrentRoot"; #endif NSDictionary *initProps = [self prepareInitialProps]; - UIView *rootView = RCTAppSetupDefaultRootView(bridge, @"videoplayer", initProps); + UIView *rootView = RCTAppSetupDefaultRootView(bridge, @"VideoPlayer", initProps); if (@available(iOS 13.0, *)) { rootView.backgroundColor = [UIColor systemBackgroundColor]; @@ -85,7 +85,7 @@ static NSString *const kRNConcurrentRoot = @"concurrentRoot"; - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge { #if DEBUG - return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"]; + return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"src/index"]; #else return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; #endif