23 lines
392 B
Plaintext
23 lines
392 B
Plaintext
|
@file:Suppress("UnstableApiUsage")
|
||
|
|
||
|
pluginManagement {
|
||
|
repositories {
|
||
|
gradlePluginPortal()
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencyResolutionManagement {
|
||
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
rootProject.name = "wireguard-android"
|
||
|
|
||
|
include(":tunnel")
|
||
|
include(":ui")
|