mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-08 23:51:21 +02:00
29 lines
782 B
Kotlin
29 lines
782 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
// maven {
|
|
// url = uri("https://androidx.dev/snapshots/builds/14137143/artifacts/repository")
|
|
// }
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
// maven {
|
|
// url = uri("https://androidx.dev/snapshots/builds/14137143/artifacts/repository")
|
|
// }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Wholphin"
|
|
include(":app")
|