Initial commit

This commit is contained in:
2025-10-29 09:29:38 +03:00
parent 7c829437db
commit fd0f2f0af1
27 changed files with 879 additions and 22 deletions

View File

@@ -1,5 +1,7 @@
plugins {
composeCompiler
kotlinAndroid
kotlinSerialization version Version.Kotlin.language
androidApplication
}
@@ -32,6 +34,14 @@ android {
}
dependencies {
defaultLibrary()
defaultComposeLibrary()
val ktor = "3.3.1"
implementation("io.ktor:ktor-client-core:$ktor")
implementation("io.ktor:ktor-client-cio:$ktor")
implementation("io.ktor:ktor-client-content-negotiation:$ktor")
implementation("io.ktor:ktor-serialization-kotlinx-json:$ktor")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0")
androidTestImplementation(project(path = ":testLib"))
androidTestImplementation("io.github.kakaocup:compose:1.0.0")
androidTestImplementation("com.squareup.okhttp3:mockwebserver:4.12.0")
}