42 lines
1.1 KiB
Kotlin
42 lines
1.1 KiB
Kotlin
plugins {
|
|
id("gq.kirmanak.mealient.library")
|
|
id("kotlin-kapt")
|
|
id("dagger.hilt.android.plugin")
|
|
alias(libs.plugins.ksp)
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
ksp {
|
|
arg("room.schemaLocation", "$projectDir/schemas")
|
|
}
|
|
}
|
|
|
|
namespace = "gq.kirmanak.mealient.database"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.google.dagger.hiltAndroid)
|
|
kapt(libs.google.dagger.hiltCompiler)
|
|
kaptTest(libs.google.dagger.hiltAndroidCompiler)
|
|
testImplementation(libs.google.dagger.hiltAndroidTesting)
|
|
|
|
// withTransaction is used in the app module
|
|
api(libs.androidx.room.ktx)
|
|
|
|
implementation(libs.androidx.room.runtime)
|
|
implementation(libs.androidx.room.paging)
|
|
ksp(libs.androidx.room.compiler)
|
|
testImplementation(libs.androidx.room.testing)
|
|
|
|
implementation(libs.jetbrains.kotlinx.datetime)
|
|
|
|
implementation(libs.jetbrains.kotlinx.coroutinesAndroid)
|
|
testImplementation(libs.jetbrains.kotlinx.coroutinesTest)
|
|
|
|
testImplementation(libs.androidx.test.junit)
|
|
|
|
testImplementation(libs.google.truth)
|
|
|
|
testImplementation(libs.io.mockk)
|
|
} |