From de0e039898731597ed0074afa2e74c4fe5fb501d Mon Sep 17 00:00:00 2001 From: Martin Konicek Date: Fri, 9 Oct 2015 14:30:58 +0100 Subject: [PATCH] Update SignedAPKAndroid.md --- docs/SignedAPKAndroid.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/SignedAPKAndroid.md b/docs/SignedAPKAndroid.md index 84c051c80..79d197e95 100644 --- a/docs/SignedAPKAndroid.md +++ b/docs/SignedAPKAndroid.md @@ -7,7 +7,7 @@ permalink: docs/signed-apk-android.html next: activityindicatorios --- -To distribute your Android application via [Google Play store](https://play.google.com/store), you'll need to generate a signed release APK. The [Signing Your Applications](https://developer.android.com/tools/publishing/app-signing.html) page on Android Developers documentation describe the topic in detail. This guide covers the process in brief, as well as lists the steps required to retrieve and package the JavaScript bundle. +To distribute your Android application via [Google Play store](https://play.google.com/store), you'll need to generate a signed release APK. The [Signing Your Applications](https://developer.android.com/tools/publishing/app-signing.html) page on Android Developers documentation describes the topic in detail. This guide covers the process in brief, as well as lists the steps required to packaging the JavaScript bundle. ### Generating a signing key @@ -70,8 +70,9 @@ android { 2. In your project folder, run the following in a Terminal, ```sh +$ 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 distribute. +The generated APK can be found under `android/app/build/outputs/apk/app-release.apk`, and is ready to be distributed.