compose-lobsters/lobsters-api/build.gradle.kts
Harsh Shandilya 84f45f523a
Replace Moshi with kotlinx.serialization
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2020-11-07 11:15:54 +05:30

15 lines
469 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.retrofitSerialization)
testImplementation(Dependencies.Testing.junit)
testImplementation(Dependencies.Kotlin.Coroutines.core)
testImplementation(Dependencies.Testing.mockWebServer)
}