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.6.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.6 release of ArcGIS Maps SDK for Kotlin.
Release notes:
New Samples:
Layers:
- Add ENC exchange set
- Add KML layer with network links
Maps:
- Create and save map
Enhancements:
- All new Kotlin SDK samples going forward will be built utilizing Jetpack Compose, leveraging the GeoView-Compose Toolkit module.
- Updated Snap geometry edits to use optional toggles to enable Geometry Guides and Feature snapping.
- Updated Edit features using feature forms to use the new FeatureForm constructor which does not depend on the
FeatureFormDefinition
. - This release introduces the Sample Viewer as an open-source project that showcases all the ArcGIS Maps SDK for Kotlin samples.
- Migrated to Android Gradle plugin
8.7.1
which is compatible with Gradle version8.9
.