Skip to content

chore(deps): update all dependencies #222

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

Merged
merged 2 commits into from
May 10, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ jobs:
run: ./gradlew :app:koverXmlReport --warning-mode all --stacktrace

- name: Upload Test Report
uses: codecov/codecov-action@v4.1.0
uses: codecov/codecov-action@v4.3.1
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ buildscript {
maven(url = "https://oss.sonatype.org/content/repositories/snapshots")
}
dependencies {
classpath("com.android.tools.build:gradle:8.3.1")
classpath("com.android.tools.build:gradle:8.4.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.25.0")
classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.15.2")
Expand Down
18 changes: 9 additions & 9 deletions buildSrc/src/main/kotlin/deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.gradle.plugin.use.PluginDependenciesSpec
import org.gradle.plugin.use.PluginDependencySpec

const val ktlintVersion = "1.0.0"
const val kotlinVersion = "1.9.23"
const val kotlinVersion = "1.9.24"

object appConfig {
const val applicationId = "com.hoc.flowmvi"
Expand All @@ -27,11 +27,11 @@ object appConfig {
object deps {
object androidx {
const val appCompat = "androidx.appcompat:appcompat:1.6.1"
const val coreKtx = "androidx.core:core-ktx:1.12.0"
const val coreKtx = "androidx.core:core-ktx:1.13.1"
const val constraintLayout = "androidx.constraintlayout:constraintlayout:2.1.4"
const val recyclerView = "androidx.recyclerview:recyclerview:1.3.2"
const val swipeRefreshLayout = "androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01"
const val material = "com.google.android.material:material:1.11.0"
const val material = "com.google.android.material:material:1.12.0"
const val startup = "androidx.startup:startup-runtime:1.1.1"
}

Expand All @@ -44,23 +44,23 @@ object deps {
}

object squareup {
const val retrofit = "com.squareup.retrofit2:retrofit:2.10.0"
const val converterMoshi = "com.squareup.retrofit2:converter-moshi:2.10.0"
const val retrofit = "com.squareup.retrofit2:retrofit:2.11.0"
const val converterMoshi = "com.squareup.retrofit2:converter-moshi:2.11.0"
const val loggingInterceptor = "com.squareup.okhttp3:logging-interceptor:4.12.0"
const val moshiKotlin = "com.squareup.moshi:moshi-kotlin:1.15.1"
const val leakCanary = "com.squareup.leakcanary:leakcanary-android:2.13"
const val leakCanary = "com.squareup.leakcanary:leakcanary-android:2.14"
}

object coroutines {
private const val version = "1.8.0"
private const val version = "1.8.1"

const val core = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version"
const val android = "org.jetbrains.kotlinx:kotlinx-coroutines-android:$version"
const val test = "org.jetbrains.kotlinx:kotlinx-coroutines-test:$version"
}

object koin {
private const val version = "3.5.3"
private const val version = "3.5.6"

const val core = "io.insert-koin:koin-core:$version"
const val android = "io.insert-koin:koin-android:$version"
Expand All @@ -74,7 +74,7 @@ object deps {
const val timber = "com.jakewharton.timber:timber:5.0.1"

object arrow {
private const val version = "1.2.3"
private const val version = "1.2.4"
const val core = "io.arrow-kt:arrow-core:$version"
}

Expand Down
Loading