forked from SagerNet/sing-box-for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
24 lines (24 loc) · 763 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
24 lines (24 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
maven { url = uri("https://api.xposed.info/") }
}
}
rootProject.name = "sing-box"
include(":app")
include(":libxposed-api")
project(":libxposed-api").projectDir = file("third_party/libxposed-api")
include(":terminal-emulator")
project(":terminal-emulator").projectDir = file("third_party/termux-app/terminal-emulator")
include(":terminal-view")
project(":terminal-view").projectDir = file("third_party/termux-app/terminal-view")