compose-lobsters/database/build.gradle.kts
Harsh Shandilya 740d9e432a
all: switch to moshi-kotlin and fix tests
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-01-30 12:51:14 +05:30

14 lines
418 B
Kotlin

plugins {
id("com.android.library")
kotlin("android")
id("com.squareup.sqldelight")
`lobsters-plugin`
}
dependencies {
implementation(Dependencies.ThirdParty.Moshi.lib)
implementation(Dependencies.ThirdParty.Moshi.kotlinReflect)
testImplementation(Dependencies.Kotlin.Coroutines.core)
testImplementation(Dependencies.ThirdParty.SQLDelight.jvmDriver)
testImplementation(Dependencies.Testing.junit)
}