aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle25
1 files changed, 13 insertions, 12 deletions
diff --git a/build.gradle b/build.gradle
index a37901ba..bffc3c8b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -64,9 +64,10 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
- versionCode 123
- versionName "1.9.4.1"
- project.ext.set(archivesBaseName, archivesBaseName + "-" + versionName);
+ versionCode 127
+ versionName "1.10.0.1"
+ archivesBaseName += "-$versionName"
+ applicationId "eu.siacs.conversations"
}
compileOptions {
@@ -74,15 +75,10 @@ android {
targetCompatibility JavaVersion.VERSION_1_7
}
- //
- // To sign release builds, create the file `gradle.properties` in
- // $HOME/.gradle or in your project directory with this content:
- //
- // mStoreFile=/path/to/key.store
- // mStorePassword=xxx
- // mKeyAlias=alias
- // mKeyPassword=xxx
- //
+ productFlavors {
+ playstore
+ free
+ }
if (project.hasProperty('mStoreFile') &&
project.hasProperty('mStorePassword') &&
project.hasProperty('mKeyAlias') &&
@@ -127,4 +123,9 @@ android {
}
}
+
+ packagingOptions {
+ exclude 'META-INF/BCKEY.DSA'
+ exclude 'META-INF/BCKEY.SF'
+ }
}