Browse Source

README: update the location of the built apk file

master
Reece H. Dunn 11 years ago
parent
commit
07d638985f
1 changed files with 6 additions and 6 deletions
  1. 6
    6
      README.md

+ 6
- 6
README.md View File

$ ./configure $ ./configure
$ make $ make


This will create an `android/build/apk/espeak-release-unsigned.apk` file.
This will create an `android/build/outputs/apk/espeak-release-unsigned.apk` file.


### Signing the APK ### Signing the APK


In order to install the built APK (e.g. `bin/eSpeakActivity-release-unsigned.apk`)
you need to self-sign the package. You can do this by:
In order to install the built APK you need to self-sign the package. You can do
this by:


1. Creating a certificate, if you do not already have one: 1. Creating a certificate, if you do not already have one:




$ jarsigner -sigalg MD5withRSA -digestalg SHA1 \ $ jarsigner -sigalg MD5withRSA -digestalg SHA1 \
-keystore [YOUR_CERTIFICATE] \ -keystore [YOUR_CERTIFICATE] \
bin/eSpeakActivity-release-unsigned.apk [ALIAS]
android/build/outputs/apk/espeak-release-unsigned.apk [ALIAS]
3. Align the apk using the zipalign tool. 3. Align the apk using the zipalign tool.


$ zipalign 4 bin/eSpeakActivity-release-unsigned.apk \
bin/eSpeakActivity-release-signed.apk
$ zipalign 4 android/build/outputs/apk/espeak-release-unsigned.apk \
android/build/outputs/apk/espeak-release-signed.apk


## Installing ## Installing



Loading…
Cancel
Save