Files
Mealient/ui/build.gradle.kts
Atridad Lahiji 3c83f740d4
Some checks failed
Check / uiTests (30) (pull_request) Has been cancelled
Check / check (pull_request) Has been cancelled
Sign / sign (push) Has been cancelled
Sorry one more
2025-07-31 18:33:22 -06:00

31 lines
760 B
Kotlin

plugins {
id("com.atridad.mealient.library")
id("dagger.hilt.android.plugin")
alias(libs.plugins.ksp)
id("com.atridad.mealient.compose")
}
android {
namespace = "com.atridad.mealient.ui"
}
dependencies {
implementation(project(":logging"))
implementation(libs.google.dagger.hiltAndroid)
ksp(libs.google.dagger.hiltCompiler)
kspTest(libs.google.dagger.hiltAndroidCompiler)
testImplementation(libs.google.dagger.hiltAndroidTesting)
implementation(libs.android.material.material)
implementation(libs.androidx.compose.material)
implementation(libs.androidx.paging.compose)
testImplementation(libs.androidx.test.junit)
testImplementation(libs.google.truth)
testImplementation(libs.io.mockk)
}