Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
Mario Danic 2019-08-21 11:24:22 +02:00
parent 3ffa4c08ef
commit 4cce275bee
2 changed files with 8 additions and 11 deletions

View File

@ -155,7 +155,7 @@ dependencies {
implementation ('com.gitlab.bitfireAT:dav4jvm:f2078bc846', { implementation ('com.gitlab.bitfireAT:dav4jvm:f2078bc846', {
exclude group: 'org.ogce', module: 'xpp3' // Android comes with its own XmlPullParser 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' implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
@ -216,11 +216,11 @@ dependencies {
exclude group: 'com.facebook.fresco' exclude group: 'com.facebook.fresco'
}) })
implementation 'com.mario.fresco:fresco:1.11.1-headers' implementation 'com.github.mario.fresco:fresco:111'
implementation 'com.mario.fresco:animated-webp:1.11.1-headers' implementation 'com.github.mario.fresco:animated-webp:111'
implementation 'com.mario.fresco:webpsupport:1.11.1-headers' implementation 'com.github.mario.fresco:webpsupport:111'
implementation 'com.mario.fresco:animated-gif:1.11.1-headers' implementation 'com.github.mario.fresco:animated-gif:111'
implementation "com.mario.fresco:imagepipeline-okhttp3:1.11.1-headers" implementation 'com.github.mario.fresco:imagepipeline-okhttp3:111'
implementation 'com.github.natario1:Autocomplete:v1.1.0' implementation 'com.github.natario1:Autocomplete:v1.1.0'

View File

@ -2,7 +2,7 @@
buildscript { buildscript {
ext { ext {
kotlinVersion = '1.3.30' kotlinVersion = '1.3.41'
} }
repositories { repositories {
@ -23,7 +23,7 @@ buildscript {
configurations.all { configurations.all {
// check for updates every build // check for updates every build
resolutionStrategy.cacheChangingModulesFor 0, 'seconds' resolutionStrategy.cacheChangingModulesFor 3600, 'seconds'
} }
allprojects { allprojects {
@ -36,9 +36,6 @@ allprojects {
maven { maven {
url 'https://jitpack.io' url 'https://jitpack.io'
} }
maven {
url "https://dl.bintray.com/mdjanic/maven"
}
maven { url 'https://maven.google.com' } maven { url 'https://maven.google.com' }
} }
} }