Files
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

48 lines
1.1 KiB
Kotlin

rootProject.name = "maplibre-compose-project"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
google {
@Suppress("UnstableApiUsage")
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
}
}
// Versions: https://plugins.gradle.org/plugin/org.gradle.toolchains.foojay-resolver-convention
plugins { id("org.gradle.toolchains.foojay-resolver-convention") version ("1.0.0") }
include(
":",
":demo-app",
":lib",
":lib:maplibre-compose",
":lib:maplibre-compose-material3",
":lib:maplibre-native-bindings",
":lib:maplibre-native-bindings-jni",
":lib:maplibre-js-bindings",
":lib:maplibre-compose-gms",
)