Upgrade dependencies (#371)

This commit is contained in:
davidoskky 2021-10-27 16:47:50 +02:00 committed by GitHub
parent 62a82b01b8
commit ca4b7ada97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 13 deletions

View File

@ -111,15 +111,15 @@ dependencies {
implementation "androidx.annotation:annotation:1.2.0" implementation "androidx.annotation:annotation:1.2.0"
implementation 'androidx.work:work-runtime-ktx:2.7.0' implementation 'androidx.work:work-runtime-ktx:2.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1' implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
implementation 'org.jsoup:jsoup:1.13.1' implementation 'org.jsoup:jsoup:1.14.3'
//multidex //multidex
implementation 'androidx.multidex:multidex:2.0.1' implementation 'androidx.multidex:multidex:2.0.1'
// About // About
implementation('com.mikepenz:aboutlibraries:6.2.0@aar') { implementation 'com.mikepenz:aboutlibraries-core:8.9.4'
transitive = true implementation 'com.mikepenz:aboutlibraries:8.9.4'
} implementation "com.mikepenz:aboutlibraries-definitions:8.9.4"
// Async // Async
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2'
@ -131,7 +131,7 @@ dependencies {
implementation 'com.burgstaller:okhttp-digest:2.5' implementation 'com.burgstaller:okhttp-digest:2.5'
// Material-ish things // Material-ish things
implementation 'com.ashokvarma.android:bottom-navigation-bar:2.1.0' implementation 'com.ashokvarma.android:bottom-navigation-bar:2.2.0'
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1' implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
// glide // glide
@ -147,10 +147,10 @@ dependencies {
implementation 'com.github.rubensousa:floatingtoolbar:1.5.1' implementation 'com.github.rubensousa:floatingtoolbar:1.5.1'
// Pager // Pager
implementation 'me.relex:circleindicator:2.0.0@aar' implementation 'me.relex:circleindicator:2.1.6'
//PhotoView //PhotoView
implementation 'com.github.chrisbanes:PhotoView:2.0.0' implementation 'com.github.chrisbanes:PhotoView:2.3.0'
implementation 'androidx.core:core-ktx:1.7.0-rc01' implementation 'androidx.core:core-ktx:1.7.0-rc01'

View File

@ -12,9 +12,7 @@ buildscript {
repositories { repositories {
google() google()
jcenter() jcenter()
maven { maven { url "https://www.jitpack.io" }
url "https://jitpack.io"
}
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:7.0.3' classpath 'com.android.tools.build:gradle:7.0.3'
@ -24,11 +22,9 @@ buildscript {
allprojects { allprojects {
repositories { repositories {
// For likebutton only
maven { url "https://jitpack.io" }
google() google()
jcenter() jcenter()
maven { url "https://www.jitpack.io" }
mavenCentral() mavenCentral()
} }
} }