* Add paging-compose dependency * Move progress indicator to separate module * Introduce color scheme preview * Move loading helper to UI module * Move helper composables to UI module * Rearrange shopping lists module * Add LazyPagingColumnPullRefresh Composable * Add BaseComposeFragment * Add pagingDataRecipeState * Add showFavoriteIcon to recipe state * Disable unused placeholders * Make "Try again" button optional * Fix example email * Wrap recipe info into a Scaffold * Add dialog to confirm deletion * Add RecipeItem Composable * Add RecipeListError Composable * Add RecipeList Composable * Replace recipes list Views with Compose * Update UI test * Remove application from ViewModel
31 lines
783 B
Kotlin
31 lines
783 B
Kotlin
plugins {
|
|
id("gq.kirmanak.mealient.library")
|
|
alias(libs.plugins.ksp)
|
|
id("gq.kirmanak.mealient.compose")
|
|
id("kotlin-kapt")
|
|
id("dagger.hilt.android.plugin")
|
|
}
|
|
|
|
android {
|
|
namespace = "gq.kirmanak.mealient.ui"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":logging"))
|
|
|
|
implementation(libs.google.dagger.hiltAndroid)
|
|
kapt(libs.google.dagger.hiltCompiler)
|
|
kaptTest(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)
|
|
} |