-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
32 lines (30 loc) · 1.19 KB
/
settings.gradle.kts
File metadata and controls
32 lines (30 loc) · 1.19 KB
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
pluginManagement {
repositories {
// maven("https://mirrors.cloud.tencent.com/nexus/repository/maven-public/")
google()
mavenCentral()
gradlePluginPortal()
}
plugins {
id("com.android.application").version(extra["agp.version"] as String)
id("com.android.library").version(extra["agp.version"] as String)
kotlin("android").version(extra["kotlin.version"] as String)
kotlin("plugin.serialization").version(extra["kotlin.version"] as String)
id("org.jetbrains.dokka").version(extra["kotlin.version"] as String)
id("com.google.devtools.ksp").version("${extra["kotlin.version"] as String}-1.0.9")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
// maven("https://mirrors.cloud.tencent.com/nexus/repository/maven-public/")
google()
mavenCentral()
maven("https://jitpack.io")
maven("https://api.xposed.info/")
maven("https://s01.oss.sonatype.org/content/repositories/releases")
maven("https://androidx.dev/storage/compose-compiler/repository/")
}
}
rootProject.name = "QDReadHook"
include(":app")