Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump com.google.dagger:hilt-android-compiler from 2.38 to 2.45 #432

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,22 +83,22 @@ 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.45'
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.45'

// 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.45'

// For local unit tests
testImplementation 'com.google.dagger:hilt-android-testing:2.38'
kaptTest 'com.google.dagger:hilt-android-compiler:2.35.1'
kaptTest 'com.google.dagger:hilt-android-compiler:2.45'

// ViewModel
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
Expand Down
8 changes: 4 additions & 4 deletions modules/database/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,20 @@ 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.45'
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.38'
kaptAndroidTest 'com.google.dagger:hilt-android-compiler:2.45'

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

// For local unit tests
testImplementation 'com.google.dagger:hilt-android-testing:2.38'
kaptTest 'com.google.dagger:hilt-android-compiler:2.38'
kaptTest 'com.google.dagger:hilt-android-compiler:2.45'
}