diff options
-rw-r--r-- | README.md | 13 | ||||
-rw-r--r-- | app/build.gradle | 27 |
2 files changed, 19 insertions, 21 deletions
@@ -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`. diff --git a/app/build.gradle b/app/build.gradle index d9ff1fdf..94823b02 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'android' android { compileSdkVersion 19 - buildToolsVersion "19.0.1" + buildToolsVersion "19.0.3" defaultConfig { minSdkVersion 14 @@ -13,32 +13,21 @@ android { } signingConfigs { - release + release { + storeFile project.hasProperty('storeFileProperty') ? file(storeFileProperty) : null + storePassword project.hasProperty('storePasswordProperty') ? storePasswordProperty : "" + keyAlias project.hasProperty('keyAliasProperty') ? keyAliasProperty : "" + keyPassword project.hasProperty('keyPasswordProperty') ? keyPasswordProperty : "" + } } buildTypes { release { runProguard true - signingConfig signingConfigs.release + signingConfig signingConfigs.release.isSigningReady() ? signingConfigs.release : signingConfigs.debug } } - if (project.hasProperty('storeFile')) { - signingConfigs.release.storeFile = new File(storeFile) - } - - if (project.hasProperty('storePassword')) { - signingConfigs.release.storePassword = storePassword - } - - if (project.hasProperty('keyAlias')) { - signingConfigs.release.keyAlias = keyAlias - } - - if (project.hasProperty('keyPassword')) { - signingConfigs.release.keyPassword = keyPassword - } - lintOptions { abortOnError false } |