Exemplary React Native Project implementing GPS Tracking in certain time intervals.
The Code was used and partially developed during a Workshop at #NCamp16.
Extensive documentation on how to install and get started with React Native can be found in the official docs. Depending on what OS you're developing on and what target OS you have in mind, you need to install different stuff.
The quickest way to get up and running is a Mac OS X Setup with iOS. On Windows and Linux only Android development is available. For these setup guides, please refer to the docs.
TL;DR: To run React Native projects you need four things:
- Install Node:
brew install node
- Install watchman:
brew install watchman
- Install React Native CLI:
npm install -g react-native-cli
- Install XCode: App Store (the easy way)
## Setup
- Fork this Repository on GitHub
- Clone your Fork
- Install Node dependencies:
npm install
- Run React Native Packager:
npm run start
- Run App in Emulator:
react-native run-ios
orreact-native run-android