aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorChristian Schneppe <christian.schneppe@pix-art.de>2020-01-24 20:20:37 +0100
committerChristian Schneppe <christian.schneppe@pix-art.de>2020-01-24 20:20:37 +0100
commit6ff2ae4e0246aac275b88e1e39242c4994fd3dd9 (patch)
tree724fd97a3c2399676a8cb1b258aaab4e27179a4d /build.gradle
parent67f244555c24b55bde4be9ad93c42388f69fd821 (diff)
fixed adding omemo encrypted images to gallery
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle16
1 files changed, 8 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle
index 8149b249b..af369ce42 100644
--- a/build.gradle
+++ b/build.gradle
@@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.5.2'
+ classpath 'com.android.tools.build:gradle:3.5.3'
}
}
@@ -63,7 +63,7 @@ dependencies {
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
- implementation 'androidx.exifinterface:exifinterface:1.0.0'
+ implementation 'androidx.exifinterface:exifinterface:1.1.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.emoji:emoji:1.0.0'
gitImplementation 'androidx.emoji:emoji-appcompat:1.0.0'
@@ -84,8 +84,8 @@ dependencies {
implementation 'com.leinardi.android:speed-dial:3.1.1' // version >= 3.0.0 needs android X libraries
implementation 'com.squareup.picasso:picasso:2.71828'
implementation 'com.squareup.okhttp3:okhttp:3.12.6' // versions > 3.12.x don't support API level < 21 anymore
- implementation 'com.squareup.retrofit2:retrofit:2.6.2'
- implementation 'com.squareup.retrofit2:converter-gson:2.6.2'
+ implementation "com.squareup.retrofit2:retrofit:2.6.4" //retrofit needs to stick with 2.6.x (https://github.com/square/retrofit/blob/master/CHANGELOG.md)
+ implementation "com.squareup.retrofit2:converter-gson:2.6.4"
implementation 'com.google.guava:guava:28.1-android'
implementation('com.github.AppIntro:AppIntro:5.1.0') {
exclude group: 'org.jetbrains' , module:'annotations'
@@ -105,12 +105,12 @@ android {
minSdkVersion 16
targetSdkVersion 29
- versionCode 281
- versionName "2.3.4"
+ versionCode 282
+ versionName "2.3.5-beta (2020-01-02)"
//resConfigs "en"
archivesBaseName += "-$versionName"
- applicationId "de.pixart.messenger"
+ applicationId "de.pixart.messenger.test"
multiDexEnabled true
buildConfigField("String", "LOGTAG", '"Pix-Art_Messenger"')
@@ -119,7 +119,7 @@ android {
buildConfigField("boolean", "SHOW_INTRO", 'true')
buildConfigField("String", "UPDATE_URL", '"https://xmpp.pix-art.de/Pix-Art_Messenger/update/"')
resValue "string", "applicationId", applicationId
- resValue "string", "app_name", "Pix-Art Messenger"
+ resValue "string", "app_name", "Pix-Art Messenger Test"
}
dataBinding {