mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 20:17:02 +05:30

Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
14 lines
392 B
Kotlin
14 lines
392 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
id("com.squareup.sqldelight")
|
|
`lobsters-plugin`
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":model"))
|
|
implementation(Dependencies.ThirdParty.Moshi.lib)
|
|
testImplementation(Dependencies.Kotlin.Coroutines.core)
|
|
testImplementation(Dependencies.ThirdParty.SQLDelight.jvmDriver)
|
|
testImplementation(Dependencies.Testing.junit)
|
|
}
|