Files
RidgeScout/settings.gradle.kts
T

27 lines
598 B
Kotlin
Raw Normal View History

2024-03-24 17:49:47 -06: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()
2024-03-29 17:37:05 -06:00
maven ( url = "https://jitpack.io" )
jcenter()
2024-03-24 17:49:47 -06:00
}
}
2024-09-18 08:49:26 -06:00
rootProject.name = "RidgeScout"
2024-03-24 17:49:47 -06:00
include(":app")
2024-03-29 17:37:05 -06:00