https://github.com/thadeu/react-native-template-app
🎯 Template CRNA Ejecting in order to create React Native App
https://github.com/thadeu/react-native-template-app
crna-eject crna-template react-native
Last synced: about 2 months ago
JSON representation
🎯 Template CRNA Ejecting in order to create React Native App
- Host: GitHub
- URL: https://github.com/thadeu/react-native-template-app
- Owner: thadeu
- License: mit
- Created: 2018-01-03T14:12:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-03T14:46:37.000Z (over 8 years ago)
- Last Synced: 2024-10-19T06:25:21.841Z (over 1 year ago)
- Topics: crna-eject, crna-template, react-native
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Content
Template CRNA Ejecting in order to React Native App
### Install dependencies
```bash
yarn install or npm install
```
#### Change Name and DisplayName
In ```app.json``` change properties name and displayName to name app
```json
"name": "MyApp",
"displayName": "My App",
```
After run ```react-native eject``` in order to create folders ```android``` and ```ios``` in your project.
### Run Expo
```bash
exp start
```
Wait and then run android or ios command
### Run Android
```bash
react-native run-android
```
### Run iOS
```bash
react-native run-ios
```