compose-lobsters/database/build.gradle.kts
Aditya Wasan 62d7590501
Add tests for SQLDelight database
Signed-off-by: Aditya Wasan <adityawasan55@gmail.com>
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-01-30 12:50:08 +05:30

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)
}