Skip to content

Commit

Permalink
Merge pull request #47 from ahudson20/bump-deps
Browse files Browse the repository at this point in the history
Bump deps
  • Loading branch information
ahudson20 authored Apr 9, 2024
2 parents d1866ff + 63608f8 commit d257f3c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
24 changes: 12 additions & 12 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ dependencies {
implementation "androidx.work:work-runtime-ktx:$work_version"

// Not a processor, but forces Dagger to use newer metadata lib
implementation 'org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.7.0'
implementation "org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.9.0"

implementation "androidx.arch.core:core-common:$arch_core_version"
implementation "androidx.arch.core:core-runtime:$arch_core_version"
Expand All @@ -96,11 +96,11 @@ dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinx_coroutines_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinx_coroutines_version"

testImplementation "com.google.truth:truth:1.1.5"
testImplementation "com.google.truth:truth:1.4.2"
testImplementation "junit:junit:4.13.2"
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.2'
testImplementation "org.mockito:mockito-core:5.4.0"
testImplementation "org.mockito.kotlin:mockito-kotlin:5.0.0"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0"
testImplementation "org.mockito:mockito-core:5.11.0"
testImplementation "org.mockito.kotlin:mockito-kotlin:5.2.1"
androidTestImplementation "androidx.test.ext:junit:1.1.5"
androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1"
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.6.5"
Expand All @@ -110,7 +110,7 @@ dependencies {
implementation "javax.inject:javax.inject:1"

// https://github.com/dokar3/sheets
implementation 'io.github.dokar3:sheets:0.4.4'
implementation "io.github.dokar3:sheets:0.5.7"

// https://github.com/ChargeMap/Compose-NumberPicker
implementation "com.chargemap.compose:numberpicker:1.0.3"
Expand All @@ -127,15 +127,15 @@ dependencies {

// Google
implementation "com.google.code.gson:gson:2.10.1"
implementation 'com.google.accompanist:accompanist-systemuicontroller:0.31.5-beta'
implementation "com.google.accompanist:accompanist-systemuicontroller:0.34.0"

// Hilt
implementation "androidx.hilt:hilt-navigation-compose:1.2.0"
implementation "com.google.dagger:hilt-android:2.49"
kapt "com.google.dagger:hilt-android-compiler:2.48"
kapt "com.google.dagger:hilt-compiler:2.48"
androidTestImplementation 'com.google.dagger:hilt-android-testing:2.44'
kaptAndroidTest 'com.google.dagger:hilt-android-compiler:2.48'
implementation "com.google.dagger:hilt-android:$dagger_hilt_version"
kapt "com.google.dagger:hilt-android-compiler:$dagger_hilt_version"
kapt "com.google.dagger:hilt-compiler:$dagger_hilt_version"
androidTestImplementation "com.google.dagger:hilt-android-testing:$dagger_hilt_version"
kaptAndroidTest "com.google.dagger:hilt-android-compiler:$dagger_hilt_version"

// Androidx Lifecycle
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version"
Expand Down
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ buildscript {
room_version = '2.6.1'
mockk_version = '1.13.5'
lifecycle_version = '2.7.0'
turbine_version = '1.0.0'
turbine_version = '1.1.0'
arch_core_version = '2.2.0'
kotlinx_coroutines_version = '1.7.2'
kotlinx_coroutines_version = '1.8.0'
dagger_hilt_version = '2.51.1'
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_agp_version"
Expand Down

0 comments on commit d257f3c

Please sign in to comment.