Skip to content

Commit a50c5d7

Browse files
authored
Merge pull request #207 from Kotlin-Android-Open-Source/renovate/all-deps
chore(deps): update all dependencies
2 parents 39d9dbc + 83ebbb3 commit a50c5d7

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
run: ./gradlew :app:koverXmlReport --warning-mode all --stacktrace
4242

4343
- name: Upload Test Report
44-
uses: codecov/codecov-action@v4.0.0
44+
uses: codecov/codecov-action@v4.0.2

build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
77
// Top-level build file where you can add configuration options common to all sub-projects/modules.
88

99
plugins {
10-
id("org.jetbrains.kotlinx.kover") version "0.7.3" apply false
11-
id("com.diffplug.spotless") version "6.22.0" apply false
10+
id("org.jetbrains.kotlinx.kover") version "0.7.6" apply false
11+
id("com.diffplug.spotless") version "6.25.0" apply false
1212
}
1313

1414
buildscript {
@@ -19,11 +19,11 @@ buildscript {
1919
maven(url = "https://oss.sonatype.org/content/repositories/snapshots")
2020
}
2121
dependencies {
22-
classpath("com.android.tools.build:gradle:8.1.3")
22+
classpath("com.android.tools.build:gradle:8.2.2")
2323
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
24-
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.22.0")
25-
classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.15.0")
26-
classpath("com.github.ben-manes:gradle-versions-plugin:0.46.0")
24+
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.25.0")
25+
classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.15.2")
26+
classpath("com.github.ben-manes:gradle-versions-plugin:0.51.0")
2727
}
2828
}
2929

buildSrc/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

buildSrc/src/main/kotlin/deps.kt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import org.gradle.plugin.use.PluginDependenciesSpec
77
import org.gradle.plugin.use.PluginDependencySpec
88

99
const val ktlintVersion = "1.0.0"
10-
const val kotlinVersion = "1.9.20"
10+
const val kotlinVersion = "1.9.22"
1111

1212
object appConfig {
1313
const val applicationId = "com.hoc.flowmvi"
@@ -31,12 +31,12 @@ object deps {
3131
const val constraintLayout = "androidx.constraintlayout:constraintlayout:2.1.4"
3232
const val recyclerView = "androidx.recyclerview:recyclerview:1.3.2"
3333
const val swipeRefreshLayout = "androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01"
34-
const val material = "com.google.android.material:material:1.10.0"
34+
const val material = "com.google.android.material:material:1.11.0"
3535
const val startup = "androidx.startup:startup-runtime:1.1.1"
3636
}
3737

3838
object lifecycle {
39-
private const val version = "2.6.2"
39+
private const val version = "2.7.0"
4040

4141
const val viewModelKtx = "androidx.lifecycle:lifecycle-viewmodel-ktx:$version" // viewModelScope
4242
const val runtimeKtx = "androidx.lifecycle:lifecycle-runtime-ktx:$version" // lifecycleScope
@@ -47,30 +47,30 @@ object deps {
4747
const val retrofit = "com.squareup.retrofit2:retrofit:2.9.0"
4848
const val converterMoshi = "com.squareup.retrofit2:converter-moshi:2.9.0"
4949
const val loggingInterceptor = "com.squareup.okhttp3:logging-interceptor:4.12.0"
50-
const val moshiKotlin = "com.squareup.moshi:moshi-kotlin:1.15.0"
51-
const val leakCanary = "com.squareup.leakcanary:leakcanary-android:2.12"
50+
const val moshiKotlin = "com.squareup.moshi:moshi-kotlin:1.15.1"
51+
const val leakCanary = "com.squareup.leakcanary:leakcanary-android:2.13"
5252
}
5353

5454
object coroutines {
55-
private const val version = "1.7.3"
55+
private const val version = "1.8.0"
5656

5757
const val core = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version"
5858
const val android = "org.jetbrains.kotlinx:kotlinx-coroutines-android:$version"
5959
const val test = "org.jetbrains.kotlinx:kotlinx-coroutines-test:$version"
6060
}
6161

6262
object koin {
63-
private const val version = "3.5.0"
63+
private const val version = "3.5.3"
6464

6565
const val core = "io.insert-koin:koin-core:$version"
6666
const val android = "io.insert-koin:koin-android:$version"
6767
const val testJunit4 = "io.insert-koin:koin-test-junit4:$version"
6868
const val test = "io.insert-koin:koin-test:$version"
6969
}
7070

71-
const val coil = "io.coil-kt:coil:2.5.0"
71+
const val coil = "io.coil-kt:coil:2.6.0"
7272
const val viewBindingDelegate = "com.github.hoc081098:ViewBindingDelegate:1.4.0"
73-
const val flowExt = "io.github.hoc081098:FlowExt:0.7.5"
73+
const val flowExt = "io.github.hoc081098:FlowExt:0.8.0"
7474
const val timber = "com.jakewharton.timber:timber:5.0.1"
7575

7676
object arrow {
@@ -90,7 +90,7 @@ object deps {
9090
}
9191
}
9292

93-
const val mockk = "io.mockk:mockk:1.13.8"
93+
const val mockk = "io.mockk:mockk:1.13.9"
9494
const val kotlinJUnit = "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
9595
}
9696
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)