-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
37 lines (31 loc) · 1.35 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
// ❗若你的 Plugin 版本过低,作为 Xposed 模块使用务必添加,其它情况可选
maven("https://dl.bintray.com/kotlin/kotlin-eap")
// ❗作为 Xposed 模块使用务必添加,其它情况可选
maven("https://api.xposed.info/")
// MavenCentral 有 2 小时缓存,若无法集成最新版本请添加此地址
// maven("https://s01.oss.sonatype.org/content/repositories/releases")
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://jitpack.io")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// ❗若你的 Plugin 版本过低,作为 Xposed 模块使用务必添加,其它情况可选
maven("https://dl.bintray.com/kotlin/kotlin-eap")
// ❗作为 Xposed 模块使用务必添加,其它情况可选
maven("https://api.xposed.info/")
// MavenCentral 有 2 小时缓存,若无法集成最新版本请添加此地址
maven("https://s01.oss.sonatype.org/content/repositories/releases")
maven("https://jitpack.io")
}
}
rootProject.name = "Not From China"
include(":app")