30 lines
669 B
Plaintext
30 lines
669 B
Plaintext
|
/*
|
||
|
* Created by sweetbread on 21.02.2025, 12:00
|
||
|
* Copyright (c) 2025. All rights reserved.
|
||
|
* Last modified 21.02.2025, 12:00
|
||
|
*/
|
||
|
|
||
|
pluginManagement {
|
||
|
repositories {
|
||
|
google {
|
||
|
content {
|
||
|
includeGroupByRegex("com\\.android.*")
|
||
|
includeGroupByRegex("com\\.google.*")
|
||
|
includeGroupByRegex("androidx.*")
|
||
|
}
|
||
|
}
|
||
|
mavenCentral()
|
||
|
gradlePluginPortal()
|
||
|
}
|
||
|
}
|
||
|
dependencyResolutionManagement {
|
||
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
rootProject.name = "Pixel Dragon"
|
||
|
include(":app")
|