2025-12-10 00:07:38 -05:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
plugins {
|
|
|
|
|
alias(libs.plugins.android.application) apply false
|
|
|
|
|
alias(libs.plugins.kotlin.android) apply false
|
|
|
|
|
alias(libs.plugins.kotlin.compose) apply false
|
2025-12-25 22:18:58 -05:00
|
|
|
|
|
|
|
|
//Adding these two fixes the conflicts between hilt / room / ksp and javbapoet (cannonicalName())
|
|
|
|
|
//https://github.com/google/dagger/issues/4048#issuecomment-1864237679
|
2025-12-24 22:48:34 -05:00
|
|
|
alias(libs.plugins.ksp) apply false
|
2025-12-25 22:18:58 -05:00
|
|
|
alias(libs.plugins.hilt.android) apply false
|
2026-01-09 19:59:44 -05:00
|
|
|
|
2025-12-10 00:07:38 -05:00
|
|
|
}
|