30 lines
689 B
Kotlin
Executable File
30 lines
689 B
Kotlin
Executable File
/*
|
|
* Created by sweetbread
|
|
* Copyright (c) 2026. All rights reserved.
|
|
*/
|
|
|
|
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()
|
|
maven("https://gitlab.com/api/v4/projects/47538655/packages/maven")
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Pixel Dragon"
|
|
include(":app")
|