Skip to content

Latest commit

 

History

History

README.md

This is an example React Native project, bootstrapped using @react-native-community/cli.

Getting Started

Note: Make sure you have completed the React Native - Environment Setup instructions till "Creating a new application" step, before proceeding.

Run the Application

Set the DATABASE_URL environment variable as the SQLite Cloud chinook connection string and then run the following command to start your Android or iOS app:

For Android

# using npm
cd android && ./gradlew clean build && cd .. && npm run android

# OR using Yarn
cd android && ./gradlew clean build && cd .. && yarn android

For iOS

# using npm
cd ios && pod install && cd .. && npm run ios

# OR using Yarn
cd ios && pod install && cd .. && yarn ios