v200.4.0 ArcGIS Maps SDK for Kotlin samples
Gradle DSL Implementation
// project level settings.gradle.kts
dependencyResolutionManagement {
repositories {
maven { url = uri("https://esri.jfrog.io/artifactory/arcgis") }
}
}
// app level build.gradle.kts
dependencies {
implementation("com.esri:arcgis-maps-kotlin:200.4.0")
}
Migrate from version 100.x to version 200.x
Visit the website doc for instructions to migrate to use the new ArcGIS Maps SDK for Kotlin
Change log:
Visit the release notes page for details about enhancements in the 200.4 release of ArcGIS Maps SDK for Kotlin.
Enhancements
- The Gradle files of the samples project have been updated, transitioning from Groovy DSL to Kotlin DSL.
- All new Kotlin SDK samples will be built utilizing Jetpack Compose, leveraging the GeoView-Compose Toolkit module.
- The following twelve Android view-based samples have been migrated to utilize GeoView-Compose:
- Analysis
- Layers
- Edit and Manage Data
- Maps
- Search and Query
- Visualization
- In forthcoming releases, there will be a systematic migration of some Android view-based samples to Jetpack Compose.
- Renamed sample
Display points using clustering feature reduction
toDisplay clusters
to be more concise.