initial commit

This commit is contained in:
2025-11-13 18:31:10 +08:00
commit da58415989
137 changed files with 10167 additions and 0 deletions

29
settings.gradle Normal file
View File

@@ -0,0 +1,29 @@
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()
// Mapbox Maven repository
maven {
url = uri("https://api.mapbox.com/downloads/v2/releases/maven")
}
}
}
rootProject.name = "geotools"
include ':app'
include ':delaunator'
include ':math'