mirror of
https://github.com/TheWhiteDog9487/FreeUnlock.git
synced 2026-08-11 14:51:30 +08:00
26 lines
618 B
Kotlin
26 lines
618 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven("https://api.xposed.info/")
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://api.xposed.info/")
|
|
}
|
|
}
|
|
|
|
rootProject.name = "FreeUnlock"
|
|
include(":app")
|