Skip to content

Instantly share code, notes, and snippets.

@landarskiy
Created November 15, 2022 11:18
Embed
What would you like to do?
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Composite Build Example"
include(":app")
include(":core")
include(":core:ui")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment