14 lines
511 B
Kotlin
14 lines
511 B
Kotlin
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven(url = "https://maven.aliyun.com/nexus/content/groups/public/")
|
|
maven(url = "https://maven.aliyun.com/nexus/content/repositories/jcenter")
|
|
maven(url = "https://repo1.maven.org/maven2/")
|
|
maven(url = "https://jitpack.io")
|
|
}
|
|
}
|
|
rootProject.name = "spaceApps-android"
|
|
include(":app", ":core", ":navigation", ":utils")
|