compose-lobsters/database/build.gradle.kts
Aditya Wasan 0a6371b159
Revert "Revert "all: switch to moshi-kotlin and fix tests""
This reverts commit 602d11de35180d72fae9472b280d08af460d940f.
2021-01-30 12:51:16 +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)
}