Last active
May 2, 2016 14:36
-
-
Save ArEnSc/5045f9ec99385f080a3b31271d61ca48 to your computer and use it in GitHub Desktop.
ChangeThis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (NSURL *)sourceURLForBridge:(__unused RCTBridge *)bridge | |
{ | |
NSURL *sourceURL; | |
/** | |
* Loading JavaScript code - uncomment the one you want. | |
* | |
* OPTION 1 | |
* Load from development server. Start the server from the repository root: | |
* | |
* $ npm start | |
* | |
* To run on device, change `localhost` to the IP address of your computer | |
* (you can get this by typing `ifconfig` into the terminal and selecting the | |
* `inet` value under `en0:`) and make sure your computer and iOS device are | |
* on the same Wi-Fi network. | |
*/ | |
/** | |
HI LOOK HERE!!!! comment out this code! | |
**/ | |
//sourceURL = [NSURL URLWithString:@"http://localhost:8081/Examples/UIExplorer/UIExplorerApp.ios.bundle?platform=ios&dev=true"]; | |
/** | |
* OPTION 2 | |
* Load from pre-bundled file on disk. To re-generate the static bundle, `cd` | |
* to your Xcode project folder and run | |
* | |
* $ curl 'http://localhost:8081/Examples/UIExplorer/UIExplorerApp.ios.bundle?platform=ios' -o main.jsbundle | |
* | |
* then add the `main.jsbundle` file to your project and uncomment this line: | |
*/ | |
// Uncomment this code!!! below! | |
sourceURL = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; | |
#if RUNNING_ON_CI | |
//sourceURL = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; | |
#endif | |
return sourceURL; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment