aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorsteckbrief <steckbrief@chefmail.de>2018-01-28 22:09:57 +0100
committersteckbrief <steckbrief@chefmail.de>2018-01-28 22:09:57 +0100
commit622412fc723fb402035ce2600f980806952709b8 (patch)
tree5b9c07b3c5d3b14a670dce2bb8fa1e4d94942d53 /build.gradle
parenta892bb6f1685b84b74ba37e5a6a24ee8fb45eee7 (diff)
Introducing product flavor 'beta' and removing product flavor 'playstore'0.0.8-beta1
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle10
1 files changed, 7 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle
index 0d7069a3..71d726b6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:2.0.0'
+ classpath 'com.android.tools.build:gradle:2.2.0'
}
}
@@ -82,6 +82,7 @@ android {
versionName "0.0.8"
archivesBaseName += "-$versionName"
apply from: 'configuration.gradle'
+ applicationId "de.thedevstack.conversationsplus"
}
dexOptions {
@@ -95,8 +96,11 @@ android {
}
productFlavors {
- playstore
- free
+ beta {
+ applicationIdSuffix ".beta"
+ versionNameSuffix "-beta"
+ }
+ free
}
testOptions {
unitTests.all {