Skip to content

Commit 44ad0db

Browse files
[v1.20.6] Revert Android CRT Dependency (#583)
Co-authored-by: GitHub Actions <[email protected]>
1 parent 3ac57a7 commit 44ad0db

File tree

22 files changed

+29
-29
lines changed

22 files changed

+29
-29
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ Consuming this SDK via Maven is the preferred method of consuming it and using i
3838
<dependency>
3939
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
4040
<artifactId>aws-iot-device-sdk</artifactId>
41-
<version>1.20.5</version>
41+
<version>1.20.6</version>
4242
</dependency>
4343
```
4444

45-
Replace `1.20.5` in `<version>1.20.5</version>` with the latest release version for the SDK.
45+
Replace `1.20.6` in `<version>1.20.6</version>` with the latest release version for the SDK.
4646
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
4747

4848
### Build IoT Device SDK from source
@@ -95,4 +95,4 @@ is provided by code that been generated from a model of the service.
9595

9696
This library is licensed under the [Apache 2.0 License](./documents/LICENSE).
9797

98-
Latest released version: v1.20.5
98+
Latest released version: v1.20.6

Diff for: documents/ANDROID.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ a dependency of the aws-iot-device-sdk-android library.
5252
mkdir sdk-workspace
5353
cd sdk-workspace
5454
# Clone the SDK repository
55-
# (Use the latest version of the SDK here instead of `v1.20.5`)
56-
git clone --branch v1.20.5 --recurse-submodules https://github.com/aws/aws-iot-device-sdk-java-v2.git
55+
# (Use the latest version of the SDK here instead of `v1.20.6`)
56+
git clone --branch v1.20.6 --recurse-submodules https://github.com/aws/aws-iot-device-sdk-java-v2.git
5757
# Compile and install the SDK for Android
5858
cd aws-iot-device-sdk-java-v2/android
5959
./gradlew build
@@ -74,10 +74,10 @@ repositories {
7474
}
7575
7676
dependencies {
77-
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.5'
77+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.6'
7878
}
7979
```
80-
Replace `1.20.5` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.5` with the latest release version for the SDK.
80+
Replace `1.20.6` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.6` with the latest release version for the SDK.
8181
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
8282

8383
### Consuming from locally installed
@@ -89,10 +89,10 @@ repositories {
8989
}
9090
9191
dependencies {
92-
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.5'
92+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.6'
9393
}
9494
```
95-
Replace `1.20.5` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.5` with the latest release version for the SDK
95+
Replace `1.20.6` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.6` with the latest release version for the SDK
9696
or replace with `1.0.0-SNAPSHOT` to use the SDK built and installed from source.
9797
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
9898

Diff for: samples/Android/AndroidKeyChainPubSub/src/main/java/androidkeychainpubsub/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/Android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ android {
6161

6262
dependencies {
6363
implementation fileTree(dir: 'libs', include: ['*.jar'])
64-
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.5'
64+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.6'
6565
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
6666
implementation 'androidx.appcompat:appcompat:1.1.0'
6767
implementation 'androidx.core:core:1.2.0'

Diff for: samples/BasicConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/BasicPubSub/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/CognitoConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/CustomAuthorizerConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/CustomKeyOpsConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/FleetProvisioning/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/Greengrass/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/GreengrassIPC/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/JavaKeystoreConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/Jobs/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/Mqtt5/PubSub/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2929
<artifactId>aws-iot-device-sdk</artifactId>
30-
<version>1.20.5</version>
30+
<version>1.20.6</version>
3131
</dependency>
3232
</dependencies>
3333
</profile>

Diff for: samples/Mqtt5/SharedSubscription/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2929
<artifactId>aws-iot-device-sdk</artifactId>
30-
<version>1.20.5</version>
30+
<version>1.20.6</version>
3131
</dependency>
3232
</dependencies>
3333
</profile>

Diff for: samples/Pkcs11Connect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/Pkcs12Connect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/Shadow/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/WebsocketConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/WindowsCertConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

Diff for: samples/X509CredentialsProviderConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.5</version>
23+
<version>1.20.6</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

0 commit comments

Comments
 (0)