Initial commit
Some checks failed
Merge core/template-android-project to this repo / merge-if-needed (push) Has been cancelled

This commit is contained in:
2025-10-20 09:23:07 +03:00
parent b723b77676
commit 0e4bbd0817
22 changed files with 580 additions and 21 deletions

View File

@@ -1,5 +1,7 @@
plugins {
composeCompiler
kotlinAndroid
kotlinSerialization version Version.Kotlin.language
androidApplication
}
@@ -19,6 +21,7 @@ android {
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures.compose = true
buildFeatures.viewBinding = true
compileOptions {
@@ -32,6 +35,11 @@ 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")
}