From ae95d84732d259ff64662af7f9aed23139137a09 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Fri, 9 Feb 2024 19:08:21 +0000 Subject: [PATCH] [v1.20.0] Android KeyChain Support --- README.md | 6 +++--- documents/ANDROID.md | 12 ++++++------ samples/Android/app/build.gradle | 2 +- samples/BasicConnect/pom.xml | 2 +- samples/BasicPubSub/pom.xml | 2 +- samples/CognitoConnect/pom.xml | 2 +- samples/CustomAuthorizerConnect/pom.xml | 2 +- samples/CustomKeyOpsConnect/pom.xml | 2 +- samples/FleetProvisioning/pom.xml | 2 +- samples/Greengrass/pom.xml | 2 +- samples/GreengrassIPC/pom.xml | 2 +- samples/JavaKeystoreConnect/pom.xml | 2 +- samples/Jobs/pom.xml | 2 +- samples/Mqtt5/PubSub/pom.xml | 2 +- samples/Mqtt5/SharedSubscription/pom.xml | 2 +- samples/Pkcs11Connect/pom.xml | 2 +- samples/Pkcs12Connect/pom.xml | 2 +- samples/Shadow/pom.xml | 2 +- samples/WebsocketConnect/pom.xml | 2 +- samples/WindowsCertConnect/pom.xml | 2 +- samples/X509CredentialsProviderConnect/pom.xml | 2 +- 21 files changed, 28 insertions(+), 28 deletions(-) diff --git a/README.md b/README.md index 6238aecf..115fc30d 100644 --- a/README.md +++ b/README.md @@ -37,11 +37,11 @@ Consuming this SDK via Maven is the preferred method of consuming it and using i software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 ``` -Replace `1.19.1` in `1.19.1` with the latest release version for the SDK. +Replace `1.20.0` in `1.20.0` with the latest release version for the SDK. Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases ### Build IoT Device SDK from source @@ -94,4 +94,4 @@ is provided by code that been generated from a model of the service. This library is licensed under the [Apache 2.0 License](./documents/LICENSE). -Latest released version: v1.19.1 +Latest released version: v1.20.0 diff --git a/documents/ANDROID.md b/documents/ANDROID.md index 65f52f6d..a61e1663 100644 --- a/documents/ANDROID.md +++ b/documents/ANDROID.md @@ -48,8 +48,8 @@ NOTE: The shadow sample does not currently complete on android due to its depend mkdir sdk-workspace cd sdk-workspace # Clone the SDK repository -# (Use the latest version of the SDK here instead of `v1.19.1`) -git clone --branch v1.19.1 --recurse-submodules https://github.com/aws/aws-iot-device-sdk-java-v2.git +# (Use the latest version of the SDK here instead of `v1.20.0`) +git clone --branch v1.20.0 --recurse-submodules https://github.com/aws/aws-iot-device-sdk-java-v2.git # Compile and install the SDK for Android cd aws-iot-device-sdk-java-v2/android ./gradlew build @@ -70,10 +70,10 @@ repositories { } dependencies { - api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.1' + api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.0' } ``` -Replace `1.19.1` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.1` with the latest release version for the SDK. +Replace `1.20.0` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.0` with the latest release version for the SDK. Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases ### Consuming from locally installed @@ -85,10 +85,10 @@ repositories { } dependencies { - api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.1' + api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.0' } ``` -Replace `1.19.1` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.1` with the latest release version for the SDK +Replace `1.20.0` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.0` with the latest release version for the SDK or replace with `1.0.0-SNAPSHOT` to use the SDK built and installed from source. Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases diff --git a/samples/Android/app/build.gradle b/samples/Android/app/build.gradle index ff20b4c3..f191cdfc 100644 --- a/samples/Android/app/build.gradle +++ b/samples/Android/app/build.gradle @@ -61,7 +61,7 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.1' + api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.0' implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.core:core:1.2.0' implementation 'androidx.core:core-ktx:1.2.0' diff --git a/samples/BasicConnect/pom.xml b/samples/BasicConnect/pom.xml index 3dc6bb00..f53fb559 100644 --- a/samples/BasicConnect/pom.xml +++ b/samples/BasicConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/BasicPubSub/pom.xml b/samples/BasicPubSub/pom.xml index eef5cfd0..fa23116b 100644 --- a/samples/BasicPubSub/pom.xml +++ b/samples/BasicPubSub/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/CognitoConnect/pom.xml b/samples/CognitoConnect/pom.xml index ba6537e0..4fdde970 100644 --- a/samples/CognitoConnect/pom.xml +++ b/samples/CognitoConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/CustomAuthorizerConnect/pom.xml b/samples/CustomAuthorizerConnect/pom.xml index e21ccd97..70a2e96e 100644 --- a/samples/CustomAuthorizerConnect/pom.xml +++ b/samples/CustomAuthorizerConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/CustomKeyOpsConnect/pom.xml b/samples/CustomKeyOpsConnect/pom.xml index 438813d6..8ed50e12 100644 --- a/samples/CustomKeyOpsConnect/pom.xml +++ b/samples/CustomKeyOpsConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/FleetProvisioning/pom.xml b/samples/FleetProvisioning/pom.xml index 1c42cc4b..2558436b 100644 --- a/samples/FleetProvisioning/pom.xml +++ b/samples/FleetProvisioning/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/Greengrass/pom.xml b/samples/Greengrass/pom.xml index 469d0297..b4668b09 100644 --- a/samples/Greengrass/pom.xml +++ b/samples/Greengrass/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/GreengrassIPC/pom.xml b/samples/GreengrassIPC/pom.xml index 364d853c..263c006a 100644 --- a/samples/GreengrassIPC/pom.xml +++ b/samples/GreengrassIPC/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/JavaKeystoreConnect/pom.xml b/samples/JavaKeystoreConnect/pom.xml index 73eaaa48..1a8303f9 100644 --- a/samples/JavaKeystoreConnect/pom.xml +++ b/samples/JavaKeystoreConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/Jobs/pom.xml b/samples/Jobs/pom.xml index 8c7dc964..81a2c8a4 100644 --- a/samples/Jobs/pom.xml +++ b/samples/Jobs/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/Mqtt5/PubSub/pom.xml b/samples/Mqtt5/PubSub/pom.xml index d23b9904..813e41fa 100644 --- a/samples/Mqtt5/PubSub/pom.xml +++ b/samples/Mqtt5/PubSub/pom.xml @@ -27,7 +27,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/Mqtt5/SharedSubscription/pom.xml b/samples/Mqtt5/SharedSubscription/pom.xml index a9ef26d8..bec26e12 100644 --- a/samples/Mqtt5/SharedSubscription/pom.xml +++ b/samples/Mqtt5/SharedSubscription/pom.xml @@ -27,7 +27,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/Pkcs11Connect/pom.xml b/samples/Pkcs11Connect/pom.xml index 858d7e18..f6db822f 100644 --- a/samples/Pkcs11Connect/pom.xml +++ b/samples/Pkcs11Connect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/Pkcs12Connect/pom.xml b/samples/Pkcs12Connect/pom.xml index 0cf82d4c..fae9fdb6 100644 --- a/samples/Pkcs12Connect/pom.xml +++ b/samples/Pkcs12Connect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/Shadow/pom.xml b/samples/Shadow/pom.xml index 1f1c5ec1..00736f1f 100644 --- a/samples/Shadow/pom.xml +++ b/samples/Shadow/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/WebsocketConnect/pom.xml b/samples/WebsocketConnect/pom.xml index d855f2b0..de99c4ef 100644 --- a/samples/WebsocketConnect/pom.xml +++ b/samples/WebsocketConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/WindowsCertConnect/pom.xml b/samples/WindowsCertConnect/pom.xml index b8631463..a9f5cb50 100644 --- a/samples/WindowsCertConnect/pom.xml +++ b/samples/WindowsCertConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0 diff --git a/samples/X509CredentialsProviderConnect/pom.xml b/samples/X509CredentialsProviderConnect/pom.xml index 560ac8de..2a3cc72a 100644 --- a/samples/X509CredentialsProviderConnect/pom.xml +++ b/samples/X509CredentialsProviderConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.19.1 + 1.20.0