Skip to content

Commit

Permalink
Library updates
Browse files Browse the repository at this point in the history
  • Loading branch information
motorro committed Dec 5, 2023
1 parent 8209c83 commit 58aa599
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.9.10'
ext.kotlin_version = '1.9.20'
ext.dokka_version = '1.9.0'
repositories {
google()
Expand All @@ -12,8 +12,8 @@ buildscript {
}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.1'
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3'
classpath 'com.android.tools.build:gradle:8.1.4'
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.7.5'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down Expand Up @@ -74,8 +74,8 @@ allprojects {
"mockative": "1.2.6",

// Compose
"compose_compiler_version": "1.5.3",
"compose_ui_bom": "2023.08.00",
"compose_compiler_version": "1.5.5",
"compose_ui_bom": '2023.10.01',
"compose_ui_activity_version": "1.4.0",
"compose_viewmodel_version": '2.6.2',
"compose_livedata_version": "1.2.0",
Expand Down
6 changes: 3 additions & 3 deletions composeview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ dependencies {
api "androidx.lifecycle:lifecycle-viewmodel-compose:${commonLibVersions.compose_viewmodel_version}"

debugImplementation "androidx.compose.ui:ui-test-manifest"
debugImplementation "androidx.compose.ui:ui-tooling:$commonLibVersions.compose_ui_version"
debugImplementation "androidx.compose.ui:ui-tooling:1.5.4"

testImplementation "junit:junit:${commonLibVersions.junit}"
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:${commonLibVersions.mockito_kotlin}"
testImplementation "androidx.test:core:1.5.0"
testImplementation "androidx.compose.ui:ui-test-junit4:${commonLibVersions.compose_ui_test_vi_version}"
testImplementation 'org.robolectric:robolectric:4.10.3'
testImplementation "androidx.compose.ui:ui-test-junit4:1.5.4"
testImplementation 'org.robolectric:robolectric:4.11.1'
}

dokkaJavadoc.configure {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ class LceUtilsKtTest {
}

@Test
@Suppress("UNUSED_PARAMETER")
fun catchesMapperErrorInFlowMapper() = runTest {
val error = Exception("error")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ class LceUtilsKtTest {
}

@Test
@Suppress("UNUSED_PARAMETER")
fun catchesMapperErrorInFlowMapper() {
val error = Exception("error")

Expand Down

0 comments on commit 58aa599

Please sign in to comment.