@@ -55,11 +55,11 @@ Consuming this SDK via Maven is the preferred method of consuming it and using i
55
55
<dependency >
56
56
<groupId >software.amazon.awssdk.iotdevicesdk</groupId >
57
57
<artifactId >aws-iot-device-sdk</artifactId >
58
- <version >1.13.0 </version >
58
+ <version >1.13.1 </version >
59
59
</dependency >
60
60
```
61
61
62
- Replace ` 1.13.0 ` in ` <version>1.13.0 </version> ` with the latest release version for the SDK.
62
+ Replace ` 1.13.1 ` in ` <version>1.13.1 </version> ` with the latest release version for the SDK.
63
63
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
64
64
65
65
### Build IoT Device SDK from source
@@ -91,8 +91,8 @@ mvn versions:use-latest-versions -Dincludes="software.amazon.awssdk.crt*"
91
91
mkdir sdk-workspace
92
92
cd sdk-workspace
93
93
# Clone the CRT repository
94
- # (Use the latest version of the CRT here instead of "v0.21.14 ")
95
- git clone --branch v0.21.14 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
94
+ # (Use the latest version of the CRT here instead of "v0.22.1 ")
95
+ git clone --branch v0.22.1 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
96
96
cd aws-crt-java
97
97
# Compile and install the CRT
98
98
mvn install -Dmaven.test.skip=true
@@ -113,8 +113,8 @@ NOTE: The shadow sample does not currently complete on android due to its depend
113
113
mkdir sdk-workspace
114
114
cd sdk-workspace
115
115
# Clone the CRT repository
116
- # (Use the latest version of the CRT here instead of "v0.21.14 ")
117
- git clone --branch v0.21.14 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
116
+ # (Use the latest version of the CRT here instead of "v0.22.1 ")
117
+ git clone --branch v0.22.1 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
118
118
# Compile and install the CRT for Android
119
119
cd aws-crt-java/android
120
120
./gradlew connectedCheck # optional, will run the unit tests on any connected devices/emulators
@@ -139,11 +139,11 @@ repositories {
139
139
}
140
140
141
141
dependencies {
142
- implementation 'software.amazon.awssdk.crt:android:0.21.14 '
142
+ implementation 'software.amazon.awssdk.crt:android:0.22.1 '
143
143
}
144
144
```
145
145
146
- Replace ` 0.21.14 ` in ` software.amazon.awssdk.crt:android:0.21.14 ` with the latest version of the CRT.
146
+ Replace ` 0.22.1 ` in ` software.amazon.awssdk.crt:android:0.22.1 ` with the latest version of the CRT.
147
147
Look up the latest CRT version here: https://github.com/awslabs/aws-crt-java/releases
148
148
149
149
#### Caution
@@ -184,4 +184,4 @@ We need your help in making this SDK great. Please participate in the community
184
184
185
185
This library is licensed under the Apache 2.0 License.
186
186
187
- Latest released version: v1.13.1
187
+ Latest released version: v1.13.2
0 commit comments