23 lines
511 B
Groovy
23 lines
511 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "YourProjectName"
|
|
include(":app")
|
|
include(":kotlin-permissions")
|
|
include(":documentscanner") // nếu bạn có module này
|