https://github.com/arieljimenez/react_native
A Pomodoro app made with react native.
https://github.com/arieljimenez/react_native
android ios-app marshmallow react-native reactjs
Last synced: 3 months ago
JSON representation
A Pomodoro app made with react native.
- Host: GitHub
- URL: https://github.com/arieljimenez/react_native
- Owner: arieljimenez
- Created: 2018-04-13T15:47:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-04T21:24:23.000Z (about 8 years ago)
- Last Synced: 2025-10-05T03:54:58.282Z (10 months ago)
- Topics: android, ios-app, marshmallow, react-native, reactjs
- Language: JavaScript
- Homepage:
- Size: 1.14 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pomodoro React Native App
App made for the react native training.
## Dependencies
- react-native-cli (installed globally)
- yarn (it is muuuuch more faster than npm installing/downloading/calculating stuff)
- Xcode
- Android Studio properly configurated with:
- SDK Platforms: Android 6.0 (Marshmallow) SDK
- Google APIs
- Android SDK Platform 23
- Sources for Android 23
- Intel x86 Atom_64 System Image
- Google APIs Intel x86 Atom_64 System Image
- SDK Tools:
- 23.0.1
- An Android Virtual Device (AVD) runing the _Marshmallow/23_ image.
- FacebookSDK.
## Development
- First, install dependencies: `$ yarn install`
- Run `$ react-native link`, lo link the libraries to the project. If icons dont show up, run `$ react-native link react-native-vector-icons`.
- To start the metro builder: `$ yarn start`
- For mobile development:
- iOS `$ yarn ios`
- Android:
- Open the project in Android Studio
- Open our configurated _AVD_.
- Run `$ yarn android`
- Or, after create your AVD, crete an alias, like:
`alias ${YOUR_AWESOME_ALIAS}='~/Library/Android/sdk/tools/emulator -avd ${AVD_NAME} &'`
- So, to run android _simulator_ just run your alias.
## Deployment
- {TODO}
## Troubleshoting
**Q:** Error runing `yarn ios`:
`xcrun: error: unable to find utility "instruments", not a developer tool or in PATH`
**A:** [link](https://stackoverflow.com/a/39779171) to fix that issue.