* Add Compose to app module * Move Theme to ui module * Add Coil image loader * Use Compose for recipe screen * Save instruction to ingredient relation to DB * Display ingredients as server formats them * Display linked ingredients under each step * Fix ingredients padding * Show recipe full screen * Fix recipe screen UI issues * Hide keyboard on recipe navigation * Fix loading recipes from DB with no instructions or ingredients * Add instructions section title * Add ingredients section title * Remove unused view holders
32 lines
893 B
Kotlin
32 lines
893 B
Kotlin
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
group = "gq.kirmanak.mealient.buildlogic"
|
|
|
|
dependencies {
|
|
implementation(libs.jetbrains.kotlinPlugin)
|
|
implementation(libs.android.gradlePlugin)
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("androidApplication") {
|
|
id = "gq.kirmanak.mealient.application"
|
|
implementationClass = "AndroidApplicationConventionPlugin"
|
|
}
|
|
register("androidLibrary") {
|
|
id = "gq.kirmanak.mealient.library"
|
|
implementationClass = "AndroidLibraryConventionPlugin"
|
|
}
|
|
register("compose") {
|
|
id = "gq.kirmanak.mealient.compose"
|
|
implementationClass = "AndroidLibraryComposeConventionPlugin"
|
|
}
|
|
register("appCompose") {
|
|
id = "gq.kirmanak.mealient.compose.app"
|
|
implementationClass = "AndroidApplicationComposeConventionPlugin"
|
|
}
|
|
}
|
|
}
|