Skip to content

Commit

Permalink
Migrated Hilt dependencies from Kapt to KSP
Browse files Browse the repository at this point in the history
  • Loading branch information
binayshaw7777 authored and dturner committed Apr 5, 2024
1 parent 03d9af0 commit 18a62b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Expand Up @@ -128,7 +128,7 @@ dependencies {
// Hilt
implementation(libs.hilt.android.core)
implementation(libs.androidx.hilt.navigation.compose)
kapt(libs.hilt.compiler)
ksp(libs.hilt.compiler)

// Jetpack Compose
val composeBom = platform(libs.androidx.compose.bom)
Expand Down Expand Up @@ -166,7 +166,7 @@ dependencies {

// JVM tests - Hilt
testImplementation(libs.hilt.android.testing)
kaptTest(libs.hilt.compiler)
kspTest(libs.hilt.compiler)

// Dependencies for Android unit tests
androidTestImplementation(composeBom)
Expand Down Expand Up @@ -196,5 +196,5 @@ dependencies {

// AndroidX Test - Hilt testing
androidTestImplementation(libs.hilt.android.testing)
kaptAndroidTest(libs.hilt.compiler)
kspAndroidTest(libs.hilt.compiler)
}

0 comments on commit 18a62b9

Please sign in to comment.