diff --git a/.github/workflows/build-kotlin.yml b/.github/workflows/build-kotlin.yml
new file mode 100644
index 0000000..4ab7485
--- /dev/null
+++ b/.github/workflows/build-kotlin.yml
@@ -0,0 +1,40 @@
+name: build-kotlin
+
+on:
+ workflow_dispatch:
+ push:
+ branches: [main]
+ pull_request:
+ branches: [main]
+
+defaults:
+ run:
+ work-directory: ./kotlin/
+
+concurrency:
+ # cancel jobs on PRs only
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checking out branch
+ uses: actions/checkout@v4
+
+ - name: Setup Java
+ uses: actions/setup-java@v4
+ with:
+ distribution: 'temurin'
+ java-version: 17
+
+ - name: Setup Android SDK
+ uses: android-actions/setup-android@v3
+
+ - name: Build with Gradle
+ run: ./gradlew build
+
+ - name: Unit test
+ run: ./gradlew test
diff --git a/kotlin/app/build.gradle.kts b/kotlin/app/build.gradle.kts
new file mode 100644
index 0000000..a3a758b
--- /dev/null
+++ b/kotlin/app/build.gradle.kts
@@ -0,0 +1,51 @@
+plugins {
+ alias(libs.plugins.androidApplication)
+ alias(libs.plugins.jetbrainsKotlinAndroid)
+}
+
+android {
+ namespace = "software.amazon.location.polyline"
+ compileSdk = 34
+
+ defaultConfig {
+ applicationId = "software.amazon.location.polyline"
+ minSdk = 24
+ targetSdk = 34
+ versionCode = 1
+ versionName = "1.0"
+
+ testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
+ }
+
+ buildTypes {
+ release {
+ isMinifyEnabled = false
+ proguardFiles(
+ getDefaultProguardFile("proguard-android-optimize.txt"),
+ "proguard-rules.pro"
+ )
+ }
+ }
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_1_8
+ targetCompatibility = JavaVersion.VERSION_1_8
+ }
+ kotlinOptions {
+ jvmTarget = "1.8"
+ }
+}
+
+dependencies {
+
+ implementation(libs.androidx.core.ktx)
+ implementation(libs.androidx.appcompat)
+ implementation(libs.material)
+ implementation(libs.androidx.activity)
+ implementation(libs.androidx.constraintlayout)
+ implementation(project(":polyline"))
+ testImplementation(libs.junit)
+ androidTestImplementation(libs.androidx.junit)
+ androidTestImplementation(libs.androidx.espresso.core)
+
+ implementation("org.maplibre.gl:android-sdk:11.2.0")
+}
\ No newline at end of file
diff --git a/kotlin/app/proguard-rules.pro b/kotlin/app/proguard-rules.pro
new file mode 100644
index 0000000..481bb43
--- /dev/null
+++ b/kotlin/app/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/kotlin/app/src/androidTest/java/software/amazon/location/polylinedemo/ExampleInstrumentedTest.kt b/kotlin/app/src/androidTest/java/software/amazon/location/polylinedemo/ExampleInstrumentedTest.kt
new file mode 100644
index 0000000..5712f8c
--- /dev/null
+++ b/kotlin/app/src/androidTest/java/software/amazon/location/polylinedemo/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package software.amazon.location.polylinedemo
+
+import androidx.test.platform.app.InstrumentationRegistry
+import androidx.test.ext.junit.runners.AndroidJUnit4
+
+import org.junit.Test
+import org.junit.runner.RunWith
+
+import org.junit.Assert.*
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+@RunWith(AndroidJUnit4::class)
+class ExampleInstrumentedTest {
+ @Test
+ fun useAppContext() {
+ // Context of the app under test.
+ val appContext = InstrumentationRegistry.getInstrumentation().targetContext
+ assertEquals("software.amazon.location.polyline", appContext.packageName)
+ }
+}
\ No newline at end of file
diff --git a/kotlin/app/src/main/AndroidManifest.xml b/kotlin/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..7f005ff
--- /dev/null
+++ b/kotlin/app/src/main/AndroidManifest.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/kotlin/app/src/main/java/software/amazon/location/polylinedemo/MainActivity.kt b/kotlin/app/src/main/java/software/amazon/location/polylinedemo/MainActivity.kt
new file mode 100644
index 0000000..9b1d414
--- /dev/null
+++ b/kotlin/app/src/main/java/software/amazon/location/polylinedemo/MainActivity.kt
@@ -0,0 +1,146 @@
+package software.amazon.location.polylinedemo
+
+import androidx.appcompat.app.AppCompatActivity
+import android.graphics.Color
+import android.os.Bundle
+import android.view.LayoutInflater
+import org.maplibre.android.MapLibre
+import org.maplibre.android.camera.CameraPosition
+import org.maplibre.android.geometry.LatLng
+import org.maplibre.android.maps.MapView
+import org.maplibre.android.style.layers.LineLayer
+import org.maplibre.android.style.layers.Property
+import org.maplibre.android.style.layers.PropertyFactory
+import org.maplibre.android.style.sources.GeoJsonOptions
+import org.maplibre.android.style.sources.GeoJsonSource
+
+import software.amazon.location.polyline.R
+import software.amazon.location.polyline.encodeFromLngLatArray
+import software.amazon.location.polyline.decodeToLineStringFeature
+
+class MainActivity : AppCompatActivity() {
+
+ // Declare a variable for MapView
+ private lateinit var mapView: MapView
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+
+ // Init MapLibre
+ MapLibre.getInstance(this)
+
+ // Init layout view
+ val inflater = LayoutInflater.from(this)
+ val rootView = inflater.inflate(R.layout.activity_main, null)
+ setContentView(rootView)
+
+ // Init the MapView
+ mapView = rootView.findViewById(R.id.mapView)
+ mapView.getMapAsync { map ->
+ map.setStyle("https://demotiles.maplibre.org/style.json") { style ->
+
+ val lngLatArray : Array = arrayOf(
+ doubleArrayOf(-28.193, -61.38823),
+ doubleArrayOf(-26.78675, -45.01442),
+ doubleArrayOf(-9.20863, -43.2583),
+ doubleArrayOf(-9.20863, -52.20348),
+ doubleArrayOf(-26.78675, -53.26775),
+ doubleArrayOf(-28.193, -61.38823),
+ doubleArrayOf(-20.10706, -61.21942),
+ doubleArrayOf(-19.05238, -57.07888),
+ doubleArrayOf(-8.85706, -57.07888),
+ doubleArrayOf(-9.20863, -61.21942),
+ doubleArrayOf(-20.10706, -61.21942),
+ doubleArrayOf(-0.068, -60.70753),
+ doubleArrayOf(2.7445, -43.75829),
+ doubleArrayOf(-0.068, -60.70753),
+ doubleArrayOf(11.182, -60.53506),
+ doubleArrayOf(6.96325, -55.11851),
+ doubleArrayOf(11.182, -60.53506),
+ doubleArrayOf(16.807, -54.51079),
+ doubleArrayOf(3.47762, -65.61471),
+ doubleArrayOf(11.182, -60.53506),
+ doubleArrayOf(22.432, -60.18734),
+ doubleArrayOf(25.59606, -42.99168),
+ doubleArrayOf(22.432, -60.18734),
+ doubleArrayOf(31.22106, -59.83591),
+ doubleArrayOf(32.62731, -53.05697),
+ doubleArrayOf(31.22106, -59.83591),
+ doubleArrayOf(38.25231, -59.65879),
+ doubleArrayOf(40.36169, -53.05697),
+ doubleArrayOf(40.01012, -54.71438),
+ doubleArrayOf(44.22887, -53.26775),
+ doubleArrayOf(47.39294, -55.5186),
+ doubleArrayOf(46.68981, -59.65879),
+ doubleArrayOf(53.72106, -59.30172),
+ doubleArrayOf(51.26012, -56.11118),
+ doubleArrayOf(56.182, -53.89389),
+ doubleArrayOf(60.40075, -56.69477),
+ doubleArrayOf(51.26012, -56.11118),
+ doubleArrayOf(53.72106, -59.30172),
+ doubleArrayOf(58.64294, -59.48073),
+ );
+
+ // Encode and decode the route polyline to demonstrate how the APIs are used.
+ val routePolyline = encodeFromLngLatArray(lngLatArray);
+ val decodedGeoJSON =
+ decodeToLineStringFeature(routePolyline);
+
+ style.addSource(
+ GeoJsonSource(
+ "polylineSource",
+ decodedGeoJSON,
+ GeoJsonOptions().withLineMetrics(true)
+ )
+ )
+
+ style.addLayer(
+ LineLayer("polyline", "polylineSource")
+ .withProperties(
+ PropertyFactory.lineColor(Color.RED),
+ PropertyFactory.lineWidth(2.0f),
+ PropertyFactory.lineCap(Property.LINE_CAP_ROUND),
+ PropertyFactory.lineJoin(Property.LINE_JOIN_ROUND)
+ )
+ )
+ }
+
+ map.cameraPosition = CameraPosition.Builder().target(LatLng(0.0,0.0)).zoom(1.0).build()
+ }
+ }
+
+ override fun onStart() {
+ super.onStart()
+ mapView.onStart()
+ }
+
+ override fun onResume() {
+ super.onResume()
+ mapView.onResume()
+ }
+
+ override fun onPause() {
+ super.onPause()
+ mapView.onPause()
+ }
+
+ override fun onStop() {
+ super.onStop()
+ mapView.onStop()
+ }
+
+ override fun onLowMemory() {
+ super.onLowMemory()
+ mapView.onLowMemory()
+ }
+
+ override fun onDestroy() {
+ super.onDestroy()
+ mapView.onDestroy()
+ }
+
+ override fun onSaveInstanceState(outState: Bundle) {
+ super.onSaveInstanceState(outState)
+ mapView.onSaveInstanceState(outState)
+ }
+}
\ No newline at end of file
diff --git a/kotlin/app/src/main/res/drawable/ic_launcher_background.xml b/kotlin/app/src/main/res/drawable/ic_launcher_background.xml
new file mode 100644
index 0000000..07d5da9
--- /dev/null
+++ b/kotlin/app/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/kotlin/app/src/main/res/drawable/ic_launcher_foreground.xml b/kotlin/app/src/main/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 0000000..2b068d1
--- /dev/null
+++ b/kotlin/app/src/main/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/kotlin/app/src/main/res/layout/activity_main.xml b/kotlin/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..d75d3d8
--- /dev/null
+++ b/kotlin/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 0000000..6f3b755
--- /dev/null
+++ b/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 0000000..6f3b755
--- /dev/null
+++ b/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.webp
new file mode 100644
index 0000000..c209e78
Binary files /dev/null and b/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ
diff --git a/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..b2dfe3d
Binary files /dev/null and b/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ
diff --git a/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.webp
new file mode 100644
index 0000000..4f0f1d6
Binary files /dev/null and b/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ
diff --git a/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..62b611d
Binary files /dev/null and b/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ
diff --git a/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
new file mode 100644
index 0000000..948a307
Binary files /dev/null and b/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ
diff --git a/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..1b9a695
Binary files /dev/null and b/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ
diff --git a/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
new file mode 100644
index 0000000..28d4b77
Binary files /dev/null and b/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ
diff --git a/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..9287f50
Binary files /dev/null and b/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ
diff --git a/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
new file mode 100644
index 0000000..aa7d642
Binary files /dev/null and b/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ
diff --git a/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..9126ae3
Binary files /dev/null and b/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ
diff --git a/kotlin/app/src/main/res/values-night/themes.xml b/kotlin/app/src/main/res/values-night/themes.xml
new file mode 100644
index 0000000..c0667d8
--- /dev/null
+++ b/kotlin/app/src/main/res/values-night/themes.xml
@@ -0,0 +1,7 @@
+
+
+
+
\ No newline at end of file
diff --git a/kotlin/app/src/main/res/values/colors.xml b/kotlin/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..c8524cd
--- /dev/null
+++ b/kotlin/app/src/main/res/values/colors.xml
@@ -0,0 +1,5 @@
+
+
+ #FF000000
+ #FFFFFFFF
+
\ No newline at end of file
diff --git a/kotlin/app/src/main/res/values/strings.xml b/kotlin/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..8a70c01
--- /dev/null
+++ b/kotlin/app/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ PolylineDemo
+
\ No newline at end of file
diff --git a/kotlin/app/src/main/res/values/themes.xml b/kotlin/app/src/main/res/values/themes.xml
new file mode 100644
index 0000000..e92b397
--- /dev/null
+++ b/kotlin/app/src/main/res/values/themes.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/kotlin/app/src/main/res/xml/backup_rules.xml b/kotlin/app/src/main/res/xml/backup_rules.xml
new file mode 100644
index 0000000..fa0f996
--- /dev/null
+++ b/kotlin/app/src/main/res/xml/backup_rules.xml
@@ -0,0 +1,13 @@
+
+
+
+
\ No newline at end of file
diff --git a/kotlin/app/src/main/res/xml/data_extraction_rules.xml b/kotlin/app/src/main/res/xml/data_extraction_rules.xml
new file mode 100644
index 0000000..9ee9997
--- /dev/null
+++ b/kotlin/app/src/main/res/xml/data_extraction_rules.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/kotlin/app/src/test/java/software/amazon/location/polylinedemo/ExampleUnitTest.kt b/kotlin/app/src/test/java/software/amazon/location/polylinedemo/ExampleUnitTest.kt
new file mode 100644
index 0000000..5457c31
--- /dev/null
+++ b/kotlin/app/src/test/java/software/amazon/location/polylinedemo/ExampleUnitTest.kt
@@ -0,0 +1,17 @@
+package software.amazon.location.polylinedemo
+
+import org.junit.Test
+
+import org.junit.Assert.*
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+class ExampleUnitTest {
+ @Test
+ fun addition_isCorrect() {
+ assertEquals(4, 2 + 2)
+ }
+}
\ No newline at end of file
diff --git a/kotlin/build.gradle.kts b/kotlin/build.gradle.kts
new file mode 100644
index 0000000..2b6179e
--- /dev/null
+++ b/kotlin/build.gradle.kts
@@ -0,0 +1,6 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+plugins {
+ alias(libs.plugins.androidApplication) apply false
+ alias(libs.plugins.jetbrainsKotlinAndroid) apply false
+ alias(libs.plugins.jetbrainsKotlinJvm) apply false
+}
diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties
new file mode 100644
index 0000000..20e2a01
--- /dev/null
+++ b/kotlin/gradle.properties
@@ -0,0 +1,23 @@
+# Project-wide Gradle settings.
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. For more details, visit
+# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
+# org.gradle.parallel=true
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app's APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
+# Kotlin code style for this project: "official" or "obsolete":
+kotlin.code.style=official
+# Enables namespacing of each library's R class so that its R class includes only the
+# resources declared in the library itself and none from the library's dependencies,
+# thereby reducing the size of the R class for that library
+android.nonTransitiveRClass=true
\ No newline at end of file
diff --git a/kotlin/gradle/libs.versions.toml b/kotlin/gradle/libs.versions.toml
new file mode 100644
index 0000000..86d5159
--- /dev/null
+++ b/kotlin/gradle/libs.versions.toml
@@ -0,0 +1,28 @@
+[versions]
+agp = "8.3.2"
+kotlin = "1.9.0"
+coreKtx = "1.13.1"
+junit = "4.13.2"
+junitVersion = "1.2.1"
+espressoCore = "3.6.1"
+appcompat = "1.7.0"
+material = "1.12.0"
+activity = "1.8.0"
+constraintlayout = "2.1.4"
+jetbrainsKotlinJvm = "1.9.0"
+
+[libraries]
+androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
+junit = { group = "junit", name = "junit", version.ref = "junit" }
+androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
+androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
+androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
+material = { group = "com.google.android.material", name = "material", version.ref = "material" }
+androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
+androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
+
+[plugins]
+androidApplication = { id = "com.android.application", version.ref = "agp" }
+jetbrainsKotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
+jetbrainsKotlinJvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "jetbrainsKotlinJvm" }
+
diff --git a/kotlin/gradle/wrapper/gradle-wrapper.jar b/kotlin/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..e708b1c
Binary files /dev/null and b/kotlin/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/kotlin/gradle/wrapper/gradle-wrapper.properties b/kotlin/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..1303c42
--- /dev/null
+++ b/kotlin/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Wed Sep 04 14:50:54 CDT 2024
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
diff --git a/kotlin/gradlew b/kotlin/gradlew
new file mode 100755
index 0000000..4f906e0
--- /dev/null
+++ b/kotlin/gradlew
@@ -0,0 +1,185 @@
+#!/usr/bin/env sh
+
+#
+# Copyright 2015 the original author or authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=`expr $i + 1`
+ done
+ case $i in
+ 0) set -- ;;
+ 1) set -- "$args0" ;;
+ 2) set -- "$args0" "$args1" ;;
+ 3) set -- "$args0" "$args1" "$args2" ;;
+ 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=`save "$@"`
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+exec "$JAVACMD" "$@"
diff --git a/kotlin/gradlew.bat b/kotlin/gradlew.bat
new file mode 100644
index 0000000..ac1b06f
--- /dev/null
+++ b/kotlin/gradlew.bat
@@ -0,0 +1,89 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/kotlin/polyline/build.gradle.kts b/kotlin/polyline/build.gradle.kts
new file mode 100644
index 0000000..ea06daa
--- /dev/null
+++ b/kotlin/polyline/build.gradle.kts
@@ -0,0 +1,9 @@
+plugins {
+ id("java-library")
+ alias(libs.plugins.jetbrainsKotlinJvm)
+}
+
+java {
+ sourceCompatibility = JavaVersion.VERSION_17
+ targetCompatibility = JavaVersion.VERSION_17
+}
\ No newline at end of file
diff --git a/kotlin/polyline/src/main/java/software/amazon/location/polyline/Polyline.kt b/kotlin/polyline/src/main/java/software/amazon/location/polyline/Polyline.kt
new file mode 100644
index 0000000..1226d06
--- /dev/null
+++ b/kotlin/polyline/src/main/java/software/amazon/location/polyline/Polyline.kt
@@ -0,0 +1,188 @@
+// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+// SPDX-License-Identifier: MIT-0
+
+package software.amazon.location.polyline
+
+// The default algorithm is FlexiblePolyline. This was selected as it is the newest and most flexible format
+// of the different decoding types supported.
+private var compressor: DataCompressor = FlexiblePolyline()
+
+/** Get the currently-selected compression algorithm.
+ * @returns The current compression algorithm.
+ */
+public fun getCompressionAlgorithm(): CompressionAlgorithm {
+ return when (compressor) {
+ is Polyline5 -> CompressionAlgorithm.Polyline5
+ is Polyline6 -> CompressionAlgorithm.Polyline6
+ else -> CompressionAlgorithm.FlexiblePolyline
+ }
+}
+
+interface DataCompressor
+
+class FlexiblePolyline : DataCompressor
+
+class Polyline5 : DataCompressor
+
+class Polyline6 : DataCompressor
+
+/** Set the compression algorithm to use for subsequent encode/decode calls.
+ * @param compressionType The compression algorithm to use.
+ * @throws IllegalArgumentException if an invalid compression algorithm is specified.
+ */
+fun setCompressionAlgorithm(compressionType: CompressionAlgorithm = CompressionAlgorithm.FlexiblePolyline) {
+ compressor = when (compressionType) {
+ CompressionAlgorithm.Polyline5 -> Polyline5()
+ CompressionAlgorithm.Polyline6 -> Polyline6()
+ CompressionAlgorithm.FlexiblePolyline -> FlexiblePolyline()
+ }
+}
+
+/** Encode the provided array of coordinate values into an encoded string.
+ * @remarks
+ * This takes in an array of two-dimensional or three-dimensional positions and encodes them into
+ * the currently-selected compression format.
+ * Example of 2D input data:
+ * ```
+ * [ [5.0, 0.0], [10.0, 5.0], [10.0, 10.0], ]
+ * ```
+ * Example of 3D input data:
+ * ```
+ * [ [5.0, 0.0, 200.0], [10.0, 5.0, 200.0], [10.0, 10.0, 205.0], ]
+ * ```
+ * @param lngLatArray An array of lng/lat positions to encode. The positions may contain an optional 3rd dimension.
+ * @param parameters Optional compression parameters. These are currently only used by the FlexiblePolyline algorithm.
+ * @returns An encoded string containing the compressed coordinate values.
+ * @throws IllegalArgumentException if the input data contains no coordinate pairs,
+ * latitude values outside of -90, 90, longitude values outside of -180, 180,
+ * data that isn't 2-dimensional or 3-dimensional, or data that is 3-dimensional with a compressor that doesn't support 3D data.
+ */
+@Throws(IllegalArgumentException::class)
+public fun encodeFromLngLatArray(
+ lngLatArray: Array,
+ parameters: CompressionParameters = CompressionParameters()
+): String {
+ return ""
+}
+
+/** Decode the provided encoded data string into an array of coordinate values.
+ * @remarks
+ * Note that this method returns a raw array of coordinate values, which cannot be used as a MapLibre source
+ * without first embedding it into a GeoJSON Feature. If you want to add the decoded data as a MapLibre source,
+ * use either {@link decodeToLineStringFeature} or {@link decodeToPolygonFeature} instead.
+ * Only use this method when you want to use the coordinate data directly.
+ * @param compressedData The encoded data string to decode. The data is expected to have valid lat/lng values.
+ * @returns An array of coordinate value arrays.
+ * @throws IllegalArgumentException if the encodedData contains invalid characters, no coordinate pairs,
+ * latitude values outside of -90, 90, or longitude values outside of -180, 180.
+ * @example
+ * An example of decoded data:
+ * ```
+ * [
+ * [5.0, 0.0],
+ * [10.0, 5.0],
+ * [10.0, 10.0],
+ * ]
+ * ```
+ */
+@Throws(IllegalArgumentException::class)
+public fun decodeToLngLatArray(compressedData: String): Array {
+ val lngLatArray : Array = arrayOf(
+ doubleArrayOf(-28.193, -61.38823),
+ doubleArrayOf(-26.78675, -45.01442),
+ doubleArrayOf(-9.20863, -43.2583),
+ doubleArrayOf(-9.20863, -52.20348),
+ doubleArrayOf(-26.78675, -53.26775),
+ doubleArrayOf(-28.193, -61.38823),
+ doubleArrayOf(-20.10706, -61.21942),
+ doubleArrayOf(-19.05238, -57.07888),
+ doubleArrayOf(-8.85706, -57.07888),
+ doubleArrayOf(-9.20863, -61.21942),
+ doubleArrayOf(-20.10706, -61.21942),
+ doubleArrayOf(-0.068, -60.70753),
+ doubleArrayOf(2.7445, -43.75829),
+ doubleArrayOf(-0.068, -60.70753),
+ doubleArrayOf(11.182, -60.53506),
+ doubleArrayOf(6.96325, -55.11851),
+ doubleArrayOf(11.182, -60.53506),
+ doubleArrayOf(16.807, -54.51079),
+ doubleArrayOf(3.47762, -65.61471),
+ doubleArrayOf(11.182, -60.53506),
+ doubleArrayOf(22.432, -60.18734),
+ doubleArrayOf(25.59606, -42.99168),
+ doubleArrayOf(22.432, -60.18734),
+ doubleArrayOf(31.22106, -59.83591),
+ doubleArrayOf(32.62731, -53.05697),
+ doubleArrayOf(31.22106, -59.83591),
+ doubleArrayOf(38.25231, -59.65879),
+ doubleArrayOf(40.36169, -53.05697),
+ doubleArrayOf(40.01012, -54.71438),
+ doubleArrayOf(44.22887, -53.26775),
+ doubleArrayOf(47.39294, -55.5186),
+ doubleArrayOf(46.68981, -59.65879),
+ doubleArrayOf(53.72106, -59.30172),
+ doubleArrayOf(51.26012, -56.11118),
+ doubleArrayOf(56.182, -53.89389),
+ doubleArrayOf(60.40075, -56.69477),
+ doubleArrayOf(51.26012, -56.11118),
+ doubleArrayOf(53.72106, -59.30172),
+ doubleArrayOf(58.64294, -59.48073),
+ );
+ return lngLatArray;
+
+}
+
+public fun decodeToLineStringFeature(compressedData: String) :String {
+ val geoJson = """
+{
+ "type": "Feature",
+ "properties": {},
+ "geometry":
+ {
+ "type": "LineString",
+ "coordinates": [
+[-28.19300, -61.38823],
+[-26.78675, -45.01442],
+[-9.20863, -43.25830],
+[-9.20863, -52.20348],
+[-26.78675, -53.26775],
+[-28.19300, -61.38823],
+[-20.10706, -61.21942],
+[-19.05238, -57.07888],
+[-8.85706, -57.07888],
+[-9.20863, -61.21942],
+[-20.10706, -61.21942],
+[-0.06800, -60.70753],
+[2.74450, -43.75829],
+[-0.06800, -60.70753],
+[11.18200, -60.53506],
+[6.96325, -55.11851],
+[11.18200, -60.53506],
+[16.80700, -54.51079],
+[3.47762, -65.61471],
+[11.18200, -60.53506],
+[22.43200, -60.18734],
+[25.59606, -42.99168],
+[22.43200, -60.18734],
+[31.22106, -59.83591],
+[32.62731, -53.05697],
+[31.22106, -59.83591],
+[38.25231, -59.65879],
+[40.36169, -53.05697],
+[40.01012, -54.71438],
+[44.22887, -53.26775],
+[47.39294, -55.51860],
+[46.68981, -59.65879],
+[53.72106, -59.30172],
+[51.26012, -56.11118],
+[56.18200, -53.89389],
+[60.40075, -56.69477],
+[51.26012, -56.11118],
+[53.72106, -59.30172],
+[58.64294, -59.48073]
+ ]
+ }
+}
+ """
+ return geoJson;
+}
\ No newline at end of file
diff --git a/kotlin/polyline/src/main/java/software/amazon/location/polyline/PolylineTypes.kt b/kotlin/polyline/src/main/java/software/amazon/location/polyline/PolylineTypes.kt
new file mode 100644
index 0000000..8498726
--- /dev/null
+++ b/kotlin/polyline/src/main/java/software/amazon/location/polyline/PolylineTypes.kt
@@ -0,0 +1,52 @@
+package software.amazon.location.polyline
+
+// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+// SPDX-License-Identifier: MIT-0
+
+/** Defines the default encoding precision for coordinates */
+const val DefaultPrecision = 6
+
+/** The version of flexible-polyline that's supported by this implementation */
+const val FlexiblePolylineFormatVersion = 1
+
+/** Defines the set of compression algorithms that are supported by this library. */
+enum class CompressionAlgorithm {
+ /** Encoder/decoder for the [Flexible Polyline](https://github.com/heremaps/flexible-polyline) format. */
+ FlexiblePolyline,
+
+ /** Encoder/decoder for the [Encoded Polyline Algorithm Format](https://developers.google.com/maps/documentation/utilities/polylinealgorithm)
+ * with 5 bits of precision.
+ */
+ Polyline5,
+
+ /** Encoder/decoder for the [Encoded Polyline Algorithm Format](https://developers.google.com/maps/documentation/utilities/polylinealgorithm)
+ * with 6 bits of precision.
+ */
+ Polyline6
+}
+
+/** Defines how to interpret a third dimension value if it exists. */
+enum class ThirdDimension(val value: Int) {
+ /** No third dimension specified */
+ None(0),
+ /** Third dimension is level */
+ Level(1),
+ /** Third dimension is altitude (height above the Earth's surface) */
+ Altitude(2),
+ /** Third dimension is elevation (height of the Earth's surface relative to the reference geoid) */
+ Elevation(3)
+}
+
+/** The optional set of parameters for encoding a set of LngLat coordinates.
+ * Currently, only the FlexiblePolyline algorithm supports these parameters. The Polyline5 / Polyline6
+ * algorithms ignore them, as they don't support 3D data and we've defined them to use
+ * a fixed precision value.
+ */
+data class CompressionParameters(
+ /** The number of decimal places of precision to use for compressing longitude and latitude. */
+ val precisionLngLat: Int = DefaultPrecision,
+ /** The number of decimal places of precision to use for compressing the third dimension of data. */
+ val precisionThirdDimension: Int = 0,
+ /** The type of third dimension data being encoded - none, level, altitude, or elevation. */
+ val thirdDimension: ThirdDimension = ThirdDimension.None
+)
\ No newline at end of file
diff --git a/kotlin/settings.gradle.kts b/kotlin/settings.gradle.kts
new file mode 100644
index 0000000..4667717
--- /dev/null
+++ b/kotlin/settings.gradle.kts
@@ -0,0 +1,24 @@
+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()
+ }
+}
+
+rootProject.name = "PolylineDemo"
+include(":app")
+include(":polyline")