Upgrade libraries

- android build tools
- hilt
- androidx room
This commit is contained in:
Jarne Demeulemeester 2021-12-19 15:59:50 +01:00
parent df15e2c520
commit 92fb734780
No known key found for this signature in database
GPG key ID: B61B7B150DB6A6D2
2 changed files with 13 additions and 4 deletions

View file

@ -37,6 +37,15 @@ android {
}
}
splits {
abi {
isEnable = true
reset()
include("armeabi-v7a", "arm64-v8a", "x86", "x86_64")
isUniversalApk = true
}
}
compileOptions {
isCoreLibraryDesugaringEnabled = true
sourceCompatibility = JavaVersion.VERSION_1_8
@ -83,7 +92,7 @@ dependencies {
implementation("androidx.recyclerview:recyclerview-selection:1.1.0")
// Room
val roomVersion = "2.3.0"
val roomVersion = "2.4.0"
implementation("androidx.room:room-runtime:$roomVersion")
kapt("androidx.room:room-compiler:$roomVersion")
implementation("androidx.room:room-ktx:$roomVersion")
@ -102,7 +111,7 @@ dependencies {
kapt("com.github.bumptech.glide:compiler:$glideVersion")
// Hilt
val hiltVersion = "2.40.2"
val hiltVersion = "2.40.5"
implementation("com.google.dagger:hilt-android:$hiltVersion")
kapt("com.google.dagger:hilt-compiler:$hiltVersion")

View file

@ -9,7 +9,7 @@ buildscript {
}
}
dependencies {
classpath("com.android.tools.build:gradle:7.0.3")
classpath("com.android.tools.build:gradle:7.0.4")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
// NOTE: Do not place your application dependencies here; they belong
@ -17,7 +17,7 @@ buildscript {
val navVersion = "2.3.5"
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:$navVersion")
val hiltVersion = "2.40.2"
val hiltVersion = "2.40.5"
classpath("com.google.dagger:hilt-android-gradle-plugin:$hiltVersion")
val aboutLibrariesVersion = "8.9.4"