diff --git a/docs/signed-apk-android.html b/docs/signed-apk-android.html index 55e3a59a204..33423a12cf7 100644 --- a/docs/signed-apk-android.html +++ b/docs/signed-apk-android.html @@ -22,7 +22,17 @@ android { } ...

Generating the APK #

  1. Start the packager by running npm start in your project folder
  2. In your project folder, run the following in a Terminal,
$ mkdir -p android/app/src/main/assets $ curl "http://localhost:8081/index.android.bundle?platform=android&dev=false&minify=true" -o "android/app/src/main/assets/index.android.bundle" -$ cd android && ./gradlew assembleRelease

The generated APK can be found under android/app/build/outputs/apk/app-release.apk, and is ready to be distributed.

Next →