aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael <betheg@bitcloner.org>2015-08-24 10:59:52 +0200
committerMichael <betheg@bitcloner.org>2015-08-24 10:59:52 +0200
commit5f0ed62833c412f4d9ac0a0b3d168fa9a0cc8405 (patch)
tree13115aeceb8c3bd902cacafb2a6b0a33dacfff9d
parentdeb9c20e5e7459c56f5207f3eaf9c189e383475a (diff)
update android sdk and support library.
make use of the archivesBaseName and rename only 'zipaligned' release build.
-rw-r--r--build.gradle11
1 files changed, 5 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle
index a434faab..725791cd 100644
--- a/build.gradle
+++ b/build.gradle
@@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
- classpath 'com.android.tools.build:gradle:1.2.3'
+ classpath 'com.android.tools.build:gradle:1.3.1'
}
}
@@ -27,7 +27,7 @@ repositories {
dependencies {
compile project(':libs:openpgp-api-lib')
compile project(':libs:MemorizingTrustManager')
- compile 'com.android.support:support-v13:21.0.3'
+ compile 'com.android.support:support-v13:23.0.0'
compile 'org.bouncycastle:bcprov-jdk15on:1.51'
compile 'org.jitsi:org.otr4j:0.22'
compile 'org.gnu.inet:libidn:1.15'
@@ -42,14 +42,15 @@ dependencies {
}
android {
- compileSdkVersion 22
- buildToolsVersion "22.0.1"
+ compileSdkVersion 23
+ buildToolsVersion "23.0.0"
defaultConfig {
minSdkVersion 14
targetSdkVersion 21
versionCode 87
versionName "1.7.0-alpha"
+ project.ext.set(archivesBaseName, archivesBaseName + "-" + versionName);
}
compileOptions {
@@ -89,8 +90,6 @@ android {
if (output.zipAlign != null) {
output.zipAlign.outputFile = new File(output.outputFile.parent, rootProject.name + "-${variant.versionName}.apk")
}
- output.packageApplication.outputFile = new File(output.outputFile.parent, output.packageApplication.outputFile.name
- .replace(".apk", "-${variant.versionName}.apk"))
}
}
}