Skip to content

Commit

Permalink
Update example app
Browse files Browse the repository at this point in the history
  • Loading branch information
Foso committed Feb 23, 2025
1 parent 4911838 commit 6b83437
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions example/AndroidOnlyExample/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,17 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach
}
}

val ktorfit = "2.4.0"
val ktorfitVersion = "2.4.0"
val ktor = "3.1.0"
val compose_ui_version = "1.7.8"
dependencies {
implementation("de.jensklingenberg.ktorfit:ktorfit-lib:$ktorfit")
implementation("de.jensklingenberg.ktorfit:ktorfit-lib:$ktorfitVersion")
implementation("io.ktor:ktor-client-serialization:$ktor")
implementation("io.ktor:ktor-client-content-negotiation:$ktor")
implementation("io.ktor:ktor-serialization-kotlinx-json:$ktor")
implementation("de.jensklingenberg.ktorfit:ktorfit-converters-response:$ktorfit")
implementation("de.jensklingenberg.ktorfit:ktorfit-converters-call:$ktorfit")
implementation("de.jensklingenberg.ktorfit:ktorfit-converters-flow:$ktorfit")
implementation("de.jensklingenberg.ktorfit:ktorfit-converters-response:$ktorfitVersion")
implementation("de.jensklingenberg.ktorfit:ktorfit-converters-call:$ktorfitVersion")
implementation("de.jensklingenberg.ktorfit:ktorfit-converters-flow:$ktorfitVersion")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.7")
implementation("androidx.activity:activity-compose:1.10.0")
implementation("androidx.compose.ui:ui:$compose_ui_version")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ dependencyResolutionManagement {
}
}
rootProject.name = "AndroidOnlyExample"
include ':app'
include(":app")
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ktorfitFlowConverter = "2.4.0"
ktorfitResponseConverter = "2.4.0"
ktorfitGradle = "2.4.0"

ktorfitGradlePlugin = "2.2.0"
ktorfitGradlePlugin = "2.4.0"
ktorVersion = "3.1.0"
mockk = "1.13.16"
mockito-kotlin = "4.1.0"
Expand Down

0 comments on commit 6b83437

Please sign in to comment.