Now you can use Xcode build configurations / schemes with React Native without pulling your hair out.
If your app has multiple environments, you'd probably like to be able to manage these the way native developers have been doing for years, Xcode schemes and build configurations.
By default, React Native doesn't handle these particularly well, and the ability to launch dev tools or run in debug mode is impacted. This package fixes these problems.
Made by Kevin Brown, supported by Thinkmill. Thank you for making this project possible!
yarn add --dev react-native-schemes-manager
or
npm install --save-dev react-native-schemes-manager
Once the package is installed in your project, you just need to configure it by adding an xcodeSchemes
section to your package.json
and adding a postinstall
script which will re-run the script whenever you add or remove packages to/from your project:
{
"name": "your-awesome-app",
"version": "1.0.0",
"scripts": {
"postinstall": "react-native-schemes-manager all"
},
"xcodeSchemes": {
"Debug": ["Staging", "Preflight"],
"Release": ["Beta"],
"projectDirectory": "iOS",
"settings": {
"fix-script": {
// Additional environment variables your code might need
// They will be set using an `export` right before the scheme manager script runs.
"env": {
"NODE_BINARY": "/usr/bin/node6",
"LOGGING_LEVEL": "4"
},
// If you need to use some other command to run the scheme manager script
// (for example, if you use a library like Sentry).
"nodeCommand": "$NODE_BINARY ../node_modules/@sentry/cli/bin/sentry-cli react-native xcode"
}
}
},
}
This configuration will copy the "Debug" build configuration to the "Staging" and "Preflight" build configurations in all your dependent library projects. This configuration will also copy the "Release" build configuration to the "Beta" build configuration for all of the dependent libraries. The "Debug" and "Release" arrays are both optional.
If your Xcode project is not in the default directory, "ios", you can specify the directory using the optional projectDirectory
configuration. The above configuration specifies that the project is in an "iOS" directory instead (directories are case sensitive).
You can also pass in settings for each command. The only one currently supported is fix-script
.
The package is able to do three things:
- Swap its own version of react-native-xcode.sh in instead of the stock one that assumes all debug schemes are named 'Debug'.
- Add your build configurations to all library Xcode projects.
- Hide any schemes that come from your library projects so they don't show up in the menu.
As long as react-native-schemes-manager all
has run whenever you add react native modules, you should be good to go.
A good starting point for troubleshooting is:
- Completely quit Xcode.
rm -rf node_modules
yarn
ornpm i
- Re open Xcode
- Product -> Clean
- Run
If you're still having trouble, post an issue so we can look into it.
You can run the three parts of this package on demand by running either:
react-native-schemes-manager fix-libraries
: Adds your build configurations to all library Xcode projects.- Specify the
--single-project
parameter to fix a single Xcode project. Example:--single-project=React
react-native-schemes-manager fix-script
: Swaps a schemes aware build script in instead of the stock react native one.react-native-schemes-manager hide-library-schemes
: Hides any build schemes that come from your node_modules folder xcodeproj files as you don't usually want to see them anyway.
And of course you can run all 3 easily if you'd prefer:
react-native-schemes-manager all
: Runs all the scripts above.
The best way to give yourself a manual trigger for this is add to your package.json
scripts section like so:
{
"name": "your-awesome-app",
"version": "1.0.0",
"scripts": {
"fix-xcode": "react-native-schemes-manager all",
"postinstall": "react-native-schemes-manager all"
}
}
You can then yarn run fix-xcode
or npm run fix-xcode
which will run the cleanup scripts on demand.
If you decide this isn't working out for you, we'd love to know why and to try to fix it. Please open an issue.
But if you still want to get rid of this and revert the changes to your project, you can follow these steps:
yarn remove react-native-schemes-manager
ornpm remove react-native-schemes-manager --save-dev
- Open your Xcode project.
- Click on the project itself on the left sidebar to ensure it's selected.
- Click the "Build Phases" tab.
- Expand the "Bundle React Native code and images" phase.
- Change the script to:
export NODE_BINARY=node
../node_modules/react-native/packager/react-native-xcode.sh
Then, you can revert the changes to the installed libraries by:
- Quitting Xcode.
rm -rf node_modules
yarn
ornpm i
- Re-open Xcode.
You're back to where you started!
These are some great articles about related topics in case you're hungry for more:
- 📝 Migrating iOS App Through Multiple Environments: Explains how Xcode is handling this situation in a detailed way.
- 📝 How to set up multiple schemes & configurations in Xcode for your React Native iOS app: The inspiration and approach for this package, unfortunately written in Ruby. I wanted a pure Node build pipeline and I didn't want to have to muck around with per package configuration.
Licensed under the MIT License, Copyright © 2017 Kevin Brown.
See LICENSE for more information.
This project builds on a lot of earlier work by clever folks all around the world. We'd like to thank Alek Hurst and Craig Edwards who contributed ideas and inspiration, without which this project wouldn't have been possible.