- API_URL - backend api path
- Run command
npm i
- Run command
npx pod-install
- Run command
npm run ios
- Run command
npm run android
- src/assets - folder for saving data like images, icons, fonts
- src/components - shared UI components for mobile platforms
- src/screens -folder with screens
- src/utils - extra function
- Run commands:
npx run create-env:dev
cd android
./gradlew assembleDebug
The generated APK can be found under android/app/build/outputs/apk/debug/app-debug.apk
At first, you need to increase the version or build of app
- Run commands:
npx run create-env:prod
cd android
./gradlew bundleRelease
The generated AAB can be found under android/app/build/outputs/bundle/release/app-release.aab, and is ready to be uploaded to Google Play.
At first, you need to increase the version or build of app
- Run commands:
npx run create-env:dev
cd android
./gradlew bundleDebug
The generated AAB can be found under android/app/build/outputs/bundle/debug/app-debug.aab, and is ready to be uploaded to Google Play for testing team.