Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,18 +83,18 @@ dependencies {

// Dagger Hilt (DI)
implementation 'com.google.dagger:hilt-android:2.38.1'
kapt 'com.google.dagger:hilt-android-compiler:2.38'
kapt 'com.google.dagger:hilt-android-compiler:2.43'
implementation 'androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-alpha03'
implementation 'androidx.hilt:hilt-work:1.0.0'
kapt 'androidx.hilt:hilt-compiler:1.0.0'
// Hilt testing dependency
androidTestImplementation 'com.google.dagger:hilt-android-testing:2.38'
// Make Hilt generate code in the androidTest folder
kaptAndroidTest 'com.google.dagger:hilt-android-compiler:2.35.1'
kaptAndroidTest 'com.google.dagger:hilt-android-compiler:2.43'

// For instrumentation tests
androidTestImplementation 'com.google.dagger:hilt-android-testing:2.38'
kaptAndroidTest 'com.google.dagger:hilt-android-compiler:2.35.1'
kaptAndroidTest 'com.google.dagger:hilt-android-compiler:2.43'

// For local unit tests
testImplementation 'com.google.dagger:hilt-android-testing:2.38'
Expand Down
2 changes: 1 addition & 1 deletion modules/database/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependencies {
testImplementation "androidx.room:room-testing:2.3.0"
// Dagger Hilt (DI)
implementation 'com.google.dagger:hilt-android:2.38.1'
kapt 'com.google.dagger:hilt-android-compiler:2.38'
kapt 'com.google.dagger:hilt-android-compiler:2.43'
implementation 'androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-alpha03'
implementation 'androidx.hilt:hilt-work:1.0.0'
kapt 'androidx.hilt:hilt-compiler:1.0.0'
Expand Down