mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 23:47:02 +05:30
Fixes: 84f45f523a
("Replace Moshi with kotlinx.serialization")
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
16 lines
524 B
Kotlin
16 lines
524 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
kotlin("plugin.serialization") version "1.4.10"
|
|
`lobsters-plugin`
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":model"))
|
|
implementation(Dependencies.Kotlin.Serialization.json)
|
|
implementation(Dependencies.ThirdParty.Retrofit.lib)
|
|
implementation(Dependencies.ThirdParty.retrofitSerialization)
|
|
testImplementation(Dependencies.Testing.junit)
|
|
testImplementation(Dependencies.Kotlin.Coroutines.core)
|
|
testImplementation(Dependencies.Testing.mockWebServer)
|
|
}
|