From 4cce275beecc94434923607b10786b5c27cbe15b Mon Sep 17 00:00:00 2001 From: Mario Danic Date: Wed, 21 Aug 2019 11:24:22 +0200 Subject: [PATCH] Fix #534 Signed-off-by: Mario Danic --- app/build.gradle | 12 ++++++------ build.gradle | 7 ++----- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index e0ff26968..99adb8568 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -155,7 +155,7 @@ dependencies { implementation ('com.gitlab.bitfireAT:dav4jvm:f2078bc846', { exclude group: 'org.ogce', module: 'xpp3' // Android comes with its own XmlPullParser }) - implementation 'org.conscrypt:conscrypt-android:2.1.0' + implementation 'org.conscrypt:conscrypt-android:2.2.1' implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0' @@ -216,11 +216,11 @@ dependencies { exclude group: 'com.facebook.fresco' }) - implementation 'com.mario.fresco:fresco:1.11.1-headers' - implementation 'com.mario.fresco:animated-webp:1.11.1-headers' - implementation 'com.mario.fresco:webpsupport:1.11.1-headers' - implementation 'com.mario.fresco:animated-gif:1.11.1-headers' - implementation "com.mario.fresco:imagepipeline-okhttp3:1.11.1-headers" + implementation 'com.github.mario.fresco:fresco:111' + implementation 'com.github.mario.fresco:animated-webp:111' + implementation 'com.github.mario.fresco:webpsupport:111' + implementation 'com.github.mario.fresco:animated-gif:111' + implementation 'com.github.mario.fresco:imagepipeline-okhttp3:111' implementation 'com.github.natario1:Autocomplete:v1.1.0' diff --git a/build.gradle b/build.gradle index b166cc936..8d4814ed6 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ buildscript { ext { - kotlinVersion = '1.3.30' + kotlinVersion = '1.3.41' } repositories { @@ -23,7 +23,7 @@ buildscript { configurations.all { // check for updates every build - resolutionStrategy.cacheChangingModulesFor 0, 'seconds' + resolutionStrategy.cacheChangingModulesFor 3600, 'seconds' } allprojects { @@ -36,9 +36,6 @@ allprojects { maven { url 'https://jitpack.io' } - maven { - url "https://dl.bintray.com/mdjanic/maven" - } maven { url 'https://maven.google.com' } } }