Migrate Gradle build files to Kotlin DSL

This commit is contained in:
世界
2025-12-26 16:24:57 +08:00
parent 64e44b78e6
commit 7a1080d3c4
5 changed files with 371 additions and 370 deletions

17
settings.gradle.kts Normal file
View File

@@ -0,0 +1,17 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
rootProject.name = "sing-box"
include(":app")