Skip to content
This repository has been archived by the owner on Jan 24, 2019. It is now read-only.

Latest commit

 

History

History
43 lines (27 loc) · 950 Bytes

README.md

File metadata and controls

43 lines (27 loc) · 950 Bytes

eventick-react-native

A React Native app for using Eventick's check in API.

Setup

Follow React Native's "Getting Started" guide to set up your development environment.

Development

  1. Clone the repository:
$ git clone https://github.com/devbeers/eventick-react-native.git
  1. Install dependencies:
$ npm install
  1. Run:
# For iOS
react-native run-ios

# For Android
react-native run-android

Alternatively, open ios/reactEventick.xcodeproj for iOS development.

Deployment

  1. Build the js bundle file:
$ react-native bundle --platform ios --dev false --entry-file index.ios.js --bundle-output iOS/main.jsbundle
  1. Open ios/reactEventick.xcodeproj and edit the scheme to use the Release configuration.