21 lines
412 B
Kotlin
21 lines
412 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "ZapretKVN"
|
|
include(":app")
|
|
include(":app-updater")
|
|
include(":network-bootstrap")
|
|
include(":wireguard-import")
|