Files
AndroidJetpack/android-showcase/settings.gradle.kts
T
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

35 lines
746 B
Kotlin

rootProject.name = "android-showcase"
include(
":app",
":feature_album",
":feature_profile",
":feature_favourite",
":feature_base",
":library_test_utils",
":konsist_test",
)
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositories {
google()
// Added for testing local Konsist artifacts
mavenLocal()
mavenCentral()
}
}
// Generate type safe accessors when referring to other projects eg.
// Before: implementation(project(":feature_album"))
// After: implementation(projects.featureAlbum)
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")