├── .editorconfig ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── lib └── react-native-xcode.sh ├── package.json └── src ├── fix-libraries.js ├── fix-script.js ├── hide-library-schemes.js ├── index.js ├── utilities.js └── verify-config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/index.js -------------------------------------------------------------------------------- /lib/react-native-xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/lib/react-native-xcode.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/package.json -------------------------------------------------------------------------------- /src/fix-libraries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/src/fix-libraries.js -------------------------------------------------------------------------------- /src/fix-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/src/fix-script.js -------------------------------------------------------------------------------- /src/hide-library-schemes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/src/hide-library-schemes.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/src/utilities.js -------------------------------------------------------------------------------- /src/verify-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekevinbrown/react-native-schemes-manager/HEAD/src/verify-config.js --------------------------------------------------------------------------------