1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-28 18:04:52 +00:00
hyperrogue/hyperroid/settings.gradle

24 lines
533 B
Groovy
Raw Normal View History

2024-11-02 12:00:07 +00: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 = "HyperRogue"
2017-03-23 12:54:10 +00:00
include ':app'