Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Samples Post Release Tasks #150

Merged
merged 5 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Overview

ArcGIS Maps SDK for Kotlin v200.2.0 samples. The `main` branch of this repository contains sample app modules for the latest available version of the [ArcGIS Maps SDK Android Kotlin](https://developers.arcgis.com/kotlin/). Samples released under older versions can be found through the [git tags](https://github.com/Esri/arcgis-maps-sdk-kotlin-samples/tags). Please read our [wiki](https://github.com/Esri/arcgis-maps-sdk-kotlin-samples/wiki) for help with working with this repository.
ArcGIS Maps SDK for Kotlin v200.3.0 samples. The `main` branch of this repository contains sample app modules for the latest available version of the [ArcGIS Maps SDK Android Kotlin](https://developers.arcgis.com/kotlin/). Samples released under older versions can be found through the [git tags](https://github.com/Esri/arcgis-maps-sdk-kotlin-samples/tags). Please read our [wiki](https://github.com/Esri/arcgis-maps-sdk-kotlin-samples/wiki) for help with working with this repository.
shubham7109 marked this conversation as resolved.
Show resolved Hide resolved

## Prerequisites

Expand Down
14 changes: 7 additions & 7 deletions version.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
ext {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While reviewing the other PR https://devtopia.esri.com/runtime/kotlin/pull/3392/files, I was verifying myself to see if samples, toolkit and kotlin repo versions.gradle match. came across this PR
I noticed, below three version that need to be updated to match the other version upgrades?

androidBrowserVersion = '1.5.0'
 // Plugin versions
 gradleVersion = '8.1.1'
 // Java version
 javaVersion = 1.17

to

androidBrowserVersion = '1.7.0'
 // Plugin versions
 gradleVersion = '8.2.0'
 // Java version
 javaVersion = 1.8

// ArcGIS Maps SDK for Kotlin version
arcgisVersion = '200.3.0-4075'
arcgisVersion = '200.4.0-4085'
// ArcGIS Maps SDK for Kotlin Toolkit version
arcgisToolkitVersion = '200.3.0-4075'
arcgisToolkitVersion = '200.4.0-4085'
// SDK versions
compileSdkVersion = 33
compileSdkVersion = 34
minSdkVersion = 26
targetSdkVersion = 33
versionCode = 2003000
versionName = '200.3.0'
targetSdkVersion = 34
versionCode = 2004000
versionName = '200.4.0'
// Kotlin versions
kotlinVersion = '1.9.10'
ktxLifecycle = '2.5.1'
Expand All @@ -18,7 +18,7 @@ ext {
kotlinCompilerExt = '1.5.3'
// Compose versions
composeActivityVersion = '1.7.1'
composeBOM = '2023.05.01'
composeBOM = '2023.10.01'
// Library versions
appcompatVersion = '1.6.1'
constraintLayoutVersion = '2.1.4'
Expand Down
Loading