Skip to content
Open
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
16 changes: 8 additions & 8 deletions kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
// caller-injected Ktor engine, mirroring the consuming app's :core module.
// Versions match apps/mobile/android/core (Kotlin 2.1.20, Ktor 3.2.3).
plugins {
kotlin("jvm") version "2.1.20"
kotlin("plugin.serialization") version "2.1.20"
kotlin("jvm") version "2.4.10"
kotlin("plugin.serialization") version "2.4.10"
// Kotlin had no formatter at all until SMOODEV-2975 — `pnpm format:check`
// covered TS/Python/Rust/Go only, so this source tree was never verified.
id("org.jlleitschuh.gradle.ktlint") version "12.1.2"
id("org.jlleitschuh.gradle.ktlint") version "14.2.0"
`maven-publish`
signing
}
Expand All @@ -31,13 +31,13 @@ java {
}

dependencies {
api("io.ktor:ktor-client-core:3.2.3")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
api("io.ktor:ktor-client-core:3.5.2")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.11.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0")

testImplementation(kotlin("test"))
testImplementation("io.ktor:ktor-client-mock:3.2.3")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.2")
testImplementation("io.ktor:ktor-client-mock:3.5.2")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.11.0")
}

tasks.test {
Expand Down
Binary file modified kotlin/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion kotlin/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
Expand Down
4 changes: 2 additions & 2 deletions kotlin/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions kotlin/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading