Updated on 2026-08-14

This commit is contained in:
Tangem 2023-05-03 13:05:48 +03:00
parent e07cd9b157
commit 630bba1c40
15 changed files with 269 additions and 4 deletions

View file

@ -20,10 +20,10 @@ internal fun BaseExtension.configureCompilerOptions() {
internal fun BaseExtension.configureCompose(project: Project) {
val useCompose = with(project.path) {
contains(":ui") ||
contains(":onboarding") ||
contains(":onboarding") || // TODO: divide on api/impl after migrating all onboarding to module
contains(":presentation") ||
contains(":app") || // TODO: [REDACTED_JIRA]
contains(":tester:impl") // TODO: Rename module
contains(":impl")
}
buildFeatures.compose = useCompose
if (useCompose) {