Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thekevinbrown/react-native-schemes-manager
Helps you manage React Native projects that have multiple schemes.
https://github.com/thekevinbrown/react-native-schemes-manager
react react-native
Last synced: 6 days ago
JSON representation
Helps you manage React Native projects that have multiple schemes.
- Host: GitHub
- URL: https://github.com/thekevinbrown/react-native-schemes-manager
- Owner: thekevinbrown
- License: mit
- Created: 2017-01-24T06:47:48.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-06-02T00:03:09.000Z (over 2 years ago)
- Last Synced: 2024-04-25T07:20:47.639Z (7 months ago)
- Topics: react, react-native
- Language: JavaScript
- Size: 273 KB
- Stars: 398
- Watchers: 6
- Forks: 62
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React Native Schemes Manager
> ⚠️ This package is no longer necessary since `react-native` version `0.60` or above. React Native now supports the schemes correctly without any workaround.
Now you can use Xcode build configurations / schemes with React Native without pulling your hair out.
[![Build Status](https://travis-ci.org/thekevinbrown/react-native-schemes-manager.svg?branch=master)](https://travis-ci.org/thekevinbrown/react-native-schemes-manager)
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](https://twitter.com/kevinbrowntech), supported by [Tech Insite](http://techin.site/). Thank you for making this project possible!_
## Installation
```
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:
```js
{
"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`.
## What Then?
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.
## It's not working!
A good starting point for troubleshooting is:
- Completely quit Xcode.
- `rm -rf node_modules`
- `yarn` or `npm i`
- Re open Xcode
- Product -> Clean
- RunIf you're still having trouble, post an issue so we can look into it.
## Running Manually
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:
```json
{
"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.
## Uninstalling
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](https://github.com/thekevinbrown/react-native-schemes-manager/issues/new).
But if you still want to get rid of this and revert the changes to your project, you can follow these steps:
1. `yarn remove react-native-schemes-manager` or `npm remove react-native-schemes-manager --save-dev`
1. Open your Xcode project.
1. Click on the project itself on the left sidebar to ensure it's selected.
1. Click the "Build Phases" tab.
1. Expand the "Bundle React Native code and images" phase.
1. Change the script to:```
export NODE_BINARY=node
../node_modules/react-native/scripts/react-native-xcode.sh
```Then, you can revert the changes to the installed libraries by:
1. Quitting Xcode.
1. `rm -rf node_modules`
1. `yarn` or `npm i`
1. Re-open Xcode.You're back to where you started!
## Further Reading
These are some great articles about related topics in case you're hungry for more:
- [📝 Migrating iOS App Through Multiple Environments](http://www.blackdogfoundry.com/blog/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](https://zeemee.engineering/how-to-set-up-multiple-schemes-configurations-in-xcode-for-your-react-native-ios-app-7da4b5237966#.vsq9mlgv8): 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.## License
Licensed under the MIT License, Copyright © 2017 Kevin Brown.
See [LICENSE](./LICENSE) for more information.
## Acknowledgements
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.