Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

29 lines
680 B
Kotlin

// TODO: Remove below. Version catalogs is promoted to a stable feature in 7.4
enableFeaturePreview("VERSION_CATALOGS")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
}
}
rootProject.name = "Kiwi's Bar"
include(
":app",
":base",
":data",
":translate",
":common-ui-resources",
":common-ui-compose",
":ui-explore",
":ui-recipe",
":ui-collection",
":ui-cocktail-list",
":ui-search",
":ui-about",
":ui-ingredient",
":ui-browsing-history"
)