This is an example React Native project, bootstrapped using @react-native-community/cli.
Note: Make sure you have completed the React Native - Environment Setup instructions till "Creating a new application" step, before proceeding.
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:
# using npm
cd android && ./gradlew clean build && cd .. && npm run android
# OR using Yarn
cd android && ./gradlew clean build && cd .. && yarn android# using npm
cd ios && pod install && cd .. && npm run ios
# OR using Yarn
cd ios && pod install && cd .. && yarn ios