mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 23:47:02 +05:30
15 lines
419 B
Kotlin
15 lines
419 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
kotlin("kapt")
|
|
id("com.squareup.sqldelight")
|
|
`lobsters-plugin`
|
|
}
|
|
|
|
dependencies {
|
|
kapt(Dependencies.ThirdParty.Moshi.codegen)
|
|
implementation(Dependencies.ThirdParty.Moshi.lib)
|
|
testImplementation(Dependencies.Kotlin.Coroutines.core)
|
|
testImplementation(Dependencies.ThirdParty.SQLDelight.jvmDriver)
|
|
testImplementation(Dependencies.Testing.junit)
|
|
}
|