2022-05-11 06:11:32 +00:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
jcenter() // Warning: this repository is going to shut down soon
|
|
|
|
}
|
|
|
|
}
|
2022-05-15 02:51:52 +00:00
|
|
|
|
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
plugins {
|
|
|
|
id("icu.nullptr.stringfuck") version "0.2.2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-11 06:11:32 +00:00
|
|
|
rootProject.name = "GenshinProxy"
|
2022-05-14 15:19:16 +00:00
|
|
|
include(":app")
|