35 lines
746 B
Kotlin
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")
|