Skip to content

Commit

Permalink
bump: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
danilkinkin committed Feb 26, 2024
1 parent 4bd89f0 commit 465226a
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,20 +71,20 @@ android {
}

dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("androidx.activity:activity-compose:1.8.2")
implementation("androidx.compose.runtime:runtime:1.6.0")
implementation("androidx.compose.foundation:foundation:1.6.0")
implementation("androidx.compose.foundation:foundation-layout:1.6.0")
implementation("androidx.compose.ui:ui-util:1.6.0")
implementation("androidx.compose.material3:material3-window-size-class:1.1.2")
implementation("androidx.compose.animation:animation:1.6.0")
implementation("androidx.compose.ui:ui-tooling-preview:1.6.0")
implementation("androidx.compose.runtime:runtime-livedata:1.6.0")
implementation("androidx.compose.material3:material3:1.1.2")
implementation("androidx.compose.material:material:1.6.0")
implementation("androidx.compose.runtime:runtime:1.6.2")
implementation("androidx.compose.foundation:foundation:1.6.2")
implementation("androidx.compose.foundation:foundation-layout:1.6.2")
implementation("androidx.compose.ui:ui-util:1.6.2")
implementation("androidx.compose.material3:material3-window-size-class:1.2.0")
implementation("androidx.compose.animation:animation:1.6.2")
implementation("androidx.compose.ui:ui-tooling-preview:1.6.2")
implementation("androidx.compose.runtime:runtime-livedata:1.6.2")
implementation("androidx.compose.material3:material3:1.2.0")
implementation("androidx.compose.material:material:1.6.2")
implementation("androidx.datastore:datastore-preferences:1.0.0")
implementation("androidx.recyclerview:recyclerview:1.3.2")
implementation("androidx.room:room-runtime:2.6.1")
Expand All @@ -96,19 +96,19 @@ dependencies {
implementation("androidx.glance:glance-appwidget:1.0.0")
implementation("androidx.core:core-splashscreen:1.0.1")
implementation("com.google.accompanist:accompanist-systemuicontroller:0.25.1")
implementation("com.google.dagger:dagger:2.48")
implementation("com.google.dagger:hilt-android:2.48")
implementation("com.google.dagger:dagger:2.49")
implementation("com.google.dagger:hilt-android:2.49")
implementation("org.apache.commons:commons-csv:1.10.0")
implementation("io.coil-kt:coil-compose:2.3.0")
ksp("androidx.room:room-compiler:2.6.1")
kapt("androidx.hilt:hilt-compiler:1.1.0")
kapt("androidx.hilt:hilt-compiler:1.2.0")
kapt("com.google.dagger:dagger-compiler:2.46.1")
kapt("com.google.dagger:hilt-android-compiler:2.46.1")
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4")

// Debug
debugImplementation("androidx.compose.ui:ui-tooling:1.6.0")
debugImplementation("androidx.compose.ui:ui-test-manifest:1.6.0")
debugImplementation("androidx.compose.ui:ui-tooling:1.6.2")
debugImplementation("androidx.compose.ui:ui-test-manifest:1.6.2")
debugImplementation("com.google.android.glance.tools:appwidget-viewer:0.2.2")

// Testing
Expand All @@ -119,8 +119,8 @@ dependencies {
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
androidTestImplementation("androidx.test:rules:1.5.0")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.compose.ui:ui-test:1.6.0")
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.6.0")
androidTestImplementation("androidx.compose.ui:ui-test:1.6.2")
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.6.2")
androidTestImplementation("com.google.dagger:hilt-android-testing:2.46.1")
kaptAndroidTest("com.google.dagger:hilt-android-compiler:2.46.1")
}
Expand Down

0 comments on commit 465226a

Please sign in to comment.