https://github.com/rhdeck/react-native-runios-withdevteam
Run React Native app on IOS with a named development team
https://github.com/rhdeck/react-native-runios-withdevteam
Last synced: over 1 year ago
JSON representation
Run React Native app on IOS with a named development team
- Host: GitHub
- URL: https://github.com/rhdeck/react-native-runios-withdevteam
- Owner: rhdeck
- License: mit
- Created: 2017-11-28T23:01:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T16:00:14.000Z (over 8 years ago)
- Last Synced: 2025-02-25T23:35:43.599Z (over 1 year ago)
- Language: JavaScript
- Size: 20.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-native-runios-withdevteam
Plugin for React Native to allow the selection of the development team for building/running on a device.
This is useful for completely automated deployment.
# Usage
```
yarn add react-native-runios-withdevteam
react-native runios --device --development-team [your 10-digit development team ID]
```
# Notes
1) The command is `runios`, vs the standard RN `run-ios`. This plugin adds support for setting the development team, which RN does not at this time.
2) If you leave the development-team parameter blank, it will used the saved ID in your `~/.rninfo` file.
3) This package may not be necessary if you have only one developer account (e.g. you do not belong to an organization)
# Pipelining!
Completely automate the deployment to device - no XCode required!
```
react-native init myproject
cd myproject
yarn add react-native-bundlebase \
react-native-runios-withdevteam
react-native link
react-native runios --device --development-team [MYTEAMUUID]
```
Wait about 5-10 minutes, and enjoy on your phone!
**Note** The above assumes you have the keys for your organization safely on your machine - otherwise, you need to synch those. But that is per-machine and per-organization - not per project!