mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 19:07:02 +05:30
15 lines
471 B
Kotlin
15 lines
471 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
`lobsters-plugin`
|
|
}
|
|
|
|
dependencies {
|
|
api(Dependencies.ThirdParty.Retrofit.lib)
|
|
implementation(project(":database"))
|
|
implementation(Dependencies.ThirdParty.Moshi.moshiMetadataReflect)
|
|
implementation(Dependencies.ThirdParty.Retrofit.moshi)
|
|
testImplementation(Dependencies.Kotlin.Coroutines.core)
|
|
testImplementation(Dependencies.Testing.junit)
|
|
testImplementation(Dependencies.Testing.mockWebServer)
|
|
}
|