aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle23
1 files changed, 16 insertions, 7 deletions
diff --git a/build.gradle b/build.gradle
index c343ae1b5..4c8ce0816 100644
--- a/build.gradle
+++ b/build.gradle
@@ -101,15 +101,14 @@ android {
minSdkVersion 16
targetSdkVersion 28
- versionCode 266
- versionName "2.2.7"
+ versionCode 1
+ versionName "0.0.1"
archivesBaseName += "-$versionName"
- applicationId "de.pixart.messenger"
+ applicationId "de.thedevstack.piratx"
multiDexEnabled true
- buildConfigField("String", "UPDATE_URL", '"https://xmpp.pix-art.de/Pix-Art_Messenger/update/"')
+ buildConfigField("String", "UPDATE_URL", '"NULL"')
resValue "string", "applicationId", applicationId
- resValue "string", "app_name", "Pix-Art Messenger"
dimension "distribution"
}
@@ -129,13 +128,23 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
}
- flavorDimensions("distribution")
+ flavorDimensions("distribution", "stage")
productFlavors {
+ beta {
+ dimension "stage"
+ applicationIdSuffix ".beta"
+ versionNameSuffix "-beta"
+ }
+ piratx {
+ dimension "distribution"
+ }
standardPush {
dimension "distribution"
}
- standard
+ standard {
+ dimension "distribution"
+ }
}
if (project.hasProperty('mStoreFile') &&
project.hasProperty('mStorePassword') &&