48 lines
1.1 KiB
Kotlin
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",
|
|
)
|