Upgrade dependencies
Android Gradle plugin 7.1.1 -> 7.1.2 hilt 2.40.5 -> 2.41 room 2.4.1 -> 2.4.2 glide 4.13.0 -> 4.13.1
This commit is contained in:
parent
4b47d3b8de
commit
3af6fc3ce2
2 changed files with 5 additions and 6 deletions
|
@ -92,7 +92,7 @@ dependencies {
|
|||
implementation("androidx.recyclerview:recyclerview-selection:1.1.0")
|
||||
|
||||
// Room
|
||||
val roomVersion = "2.4.1"
|
||||
val roomVersion = "2.4.2"
|
||||
implementation("androidx.room:room-runtime:$roomVersion")
|
||||
kapt("androidx.room:room-compiler:$roomVersion")
|
||||
implementation("androidx.room:room-ktx:$roomVersion")
|
||||
|
@ -106,12 +106,12 @@ dependencies {
|
|||
implementation("org.jellyfin.sdk:jellyfin-core:$jellyfinVersion")
|
||||
|
||||
// Glide
|
||||
val glideVersion = "4.13.0"
|
||||
val glideVersion = "4.13.1"
|
||||
implementation("com.github.bumptech.glide:glide:$glideVersion")
|
||||
kapt("com.github.bumptech.glide:compiler:$glideVersion")
|
||||
|
||||
// Hilt
|
||||
val hiltVersion = "2.40.5"
|
||||
val hiltVersion = "2.41"
|
||||
implementation("com.google.dagger:hilt-android:$hiltVersion")
|
||||
kapt("com.google.dagger:hilt-compiler:$hiltVersion")
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ buildscript {
|
|||
}
|
||||
}
|
||||
dependencies {
|
||||
classpath("com.android.tools.build:gradle:7.1.1")
|
||||
classpath("com.android.tools.build:gradle:7.1.2")
|
||||
|
||||
val kotlinVersion = "1.6.10"
|
||||
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
|
||||
|
@ -16,10 +16,9 @@ buildscript {
|
|||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle.kts files
|
||||
val navVersion = "2.4.1"
|
||||
// NOTE: 2.5.0-alpha01 is used because 2.4.0 is incompatible with AGP 7.1
|
||||
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:$navVersion")
|
||||
|
||||
val hiltVersion = "2.40.5"
|
||||
val hiltVersion = "2.41"
|
||||
classpath("com.google.dagger:hilt-android-gradle-plugin:$hiltVersion")
|
||||
|
||||
val aboutLibrariesVersion = "8.9.4"
|
||||
|
|
Loading…
Reference in a new issue