summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2014-04-10 21:38:18 +0200
committerParménides GV <parmegv@sdf.org>2014-04-10 21:47:47 +0200
commita6675ae98c90649f81c50288a00614a0100fb335 (patch)
tree70fed72a8f537106940a38285979fca83fed832d /README.md
parent8aa7eabe7ca81595b307f83ddcb1079ceec6d45b (diff)
Build tools and gradle.properties explanation
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 11 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1d3f1dc0..7ac299bd 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ the SDK and NDK to `~/dev` on a linux machine, you would add this to your path:
Installable via `android` command (SDK Manager):
-* Android SDK Build-tools, 19.0.1
+* Android SDK Build-tools, 19.0.3
* Android Support Repository, 4+
Finally, install a java compiler. For example:
@@ -41,7 +41,16 @@ To build NDK sources, you need to issue these commands:
cd .. (to get back to the project directory)
### Compiling from the command line
-
+#### Signed APK
+
+If you want to release a signed APK, you'll have to create a gradle.properties file in the project root with the following structure:
+
+ storeFileProperty=fullPath
+ storePasswordProperty=store password without quotation marks
+ keyAliasProperty=key alias without quotation marks
+ keyPasswordProperty=key password without quotation marks
+
+#### Actual command
./gradlew build
The resulting apk(s) will be in `app/build/apk`.