Upgrade Android Gradle Plugin and Hilt

agp 7.1.3 -> 7.2.0
hilt 2.41 -> 2.42
This commit is contained in:
Jarne Demeulemeester 2022-05-10 10:30:29 +02:00
parent b50b7b985f
commit 60e28067d8
No known key found for this signature in database
GPG key ID: B61B7B150DB6A6D2
2 changed files with 3 additions and 3 deletions

View file

@ -108,7 +108,7 @@ dependencies {
kapt("com.github.bumptech.glide:compiler:$glideVersion")
// Hilt
val hiltVersion = "2.41"
val hiltVersion = "2.42"
implementation("com.google.dagger:hilt-android:$hiltVersion")
kapt("com.google.dagger:hilt-compiler:$hiltVersion")

View file

@ -8,7 +8,7 @@ buildscript {
}
}
dependencies {
classpath("com.android.tools.build:gradle:7.1.3")
classpath("com.android.tools.build:gradle:7.2.0")
val kotlinVersion = "1.6.21"
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
@ -18,7 +18,7 @@ buildscript {
val navVersion = "2.4.2"
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:$navVersion")
val hiltVersion = "2.41"
val hiltVersion = "2.42"
classpath("com.google.dagger:hilt-android-gradle-plugin:$hiltVersion")
val aboutLibrariesVersion = "10.1.0"