Testing - atabegruslan/Notes GitHub Wiki

iOS

TestFlight

https://www.youtube.com/watch?v=ZUeLAMzi-oY

  1. Setup Login to AppStore with your Apple ID
  2. Download TestFlight App
  3. After you install TestFlight and finish the preliminary setups, you'll see:

  1. After a build of the app has been submitted:

  1. You'll also see in the TestFlight app:

Internal build

Others

Android

Easiest way

Build apk

cd android 
./gradlew assembleRelease

Then transfer {project}/android/app/build/outputs/apk/release/app-release.apk onto your Android Phone.

Build aab

cd android 
./gradlew app:bundleRelease

Then upload {project}/android/app/build/outputs/bundle/release/app-release.aab onto Google Play Console.

Ref:

Others