compose-lobsters/database/build.gradle.kts
Aditya Wasan 6fdf1d0ca0
src(databse,buildSrc): remove kotlinReflect and opt into ExperimentalStdlibApi
Signed-off-by: Aditya Wasan <adityawasan55@gmail.com>
2021-01-30 12:51:17 +05:30

14 lines
425 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.moshiMetadataReflect)
testImplementation(Dependencies.Kotlin.Coroutines.core)
testImplementation(Dependencies.ThirdParty.SQLDelight.jvmDriver)
testImplementation(Dependencies.Testing.junit)
}