mirror of
https://github.com/gkd-kit/gkd.git
synced 2026-03-13 08:31:55 +08:00
36 lines
783 B
Kotlin
36 lines
783 B
Kotlin
rootProject.name = "gkd"
|
|
include(
|
|
":app",
|
|
":hidden_api",
|
|
":selector",
|
|
)
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
maven("https://jitpack.io")
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
maven("https://jitpack.io")
|
|
}
|
|
}
|