mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 19:07:02 +05:30
This reverts commit da25dd2ed9bea50691b889e093ff896fea598b1a. Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
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)
|
|
}
|