From df8c88e000e159989698e8b736296191e404392b Mon Sep 17 00:00:00 2001 From: Janic Duplessis Date: Sun, 17 Jul 2016 01:38:20 -0700 Subject: [PATCH] Fix UIExplorer entry file on iOS Summary: Files were moved to the js/ directory so UIExplorer did not work anymore on iOS, this fixes the path. Closes https://github.com/facebook/react-native/pull/8841 Differential Revision: D3576752 fbshipit-source-id: 921ddc2e158ee0c74dcf691a32504900c5d79e1d --- Examples/UIExplorer/UIExplorer/AppDelegate.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/UIExplorer/UIExplorer/AppDelegate.m b/Examples/UIExplorer/UIExplorer/AppDelegate.m index f9eaef3ad..822ea8aef 100644 --- a/Examples/UIExplorer/UIExplorer/AppDelegate.m +++ b/Examples/UIExplorer/UIExplorer/AppDelegate.m @@ -52,7 +52,7 @@ - (NSURL *)sourceURLForBridge:(__unused RCTBridge *)bridge { - NSURL *jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"Examples/UIExplorer/UIExplorerApp.ios" fallbackResource:nil]; + NSURL *jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"Examples/UIExplorer/js/UIExplorerApp.ios" fallbackResource:nil]; if (!getenv("CI_USE_PACKAGER")) { jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];