mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 22:17:03 +05:30
- Move model classes to a standalone `model` Gradle module - Migrate from Moshi to kotlinx.serialization for multiplatform support
12 lines
428 B
Kotlin
12 lines
428 B
Kotlin
plugins { kotlin("jvm") }
|
|
|
|
dependencies {
|
|
api(projects.model)
|
|
api(libs.retrofit.lib)
|
|
implementation(libs.kotlinx.serialization.core)
|
|
testImplementation(libs.kotlinx.serialization.json)
|
|
testImplementation(libs.kotlin.coroutines.core)
|
|
testImplementation(kotlin("test-junit"))
|
|
testImplementation(libs.retrofit.kotlinxSerializationConverter) { isTransitive = false }
|
|
testImplementation(libs.testing.mockWebServer)
|
|
}
|