mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 23:47:02 +05:30
15 lines
469 B
Kotlin
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)
|
|
}
|