Skip to content

Commit 3d3ffd8

Browse files
[v1.28.0] Improve AwsIotMqtt5ClientBuilder & Samples (#669)
Co-authored-by: GitHub Actions <[email protected]>
1 parent f42b510 commit 3d3ffd8

File tree

16 files changed

+23
-23
lines changed

16 files changed

+23
-23
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ Add the following to your `pom.xml` dependencies:
5454
<dependency>
5555
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
5656
<artifactId>aws-iot-device-sdk</artifactId>
57-
<version>1.27.4</version>
57+
<version>1.28.0</version>
5858
</dependency>
5959
```
6060

61-
Replace `1.27.4` in `<version>1.27.4</version>` with the latest release version for the SDK.
61+
Replace `1.28.0` in `<version>1.28.0</version>` with the latest release version for the SDK.
6262
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
6363

6464
### Building AWS IoT SDK from source
@@ -127,4 +127,4 @@ Check out our resources for additional guidance too before opening an issue:
127127

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

130-
Latest released version: v1.27.4
130+
Latest released version: v1.28.0

documents/ANDROID.md

Lines changed: 6 additions & 6 deletions
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.27.4`)
56-
git clone --branch v1.27.4 --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.28.0`)
56+
git clone --branch v1.28.0 --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.27.4'
77+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.28.0'
7878
}
7979
```
80-
Replace `1.27.4` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.27.4` with the latest release version for the SDK.
80+
Replace `1.28.0` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.28.0` 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.27.4'
92+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.28.0'
9393
}
9494
```
95-
Replace `1.27.4` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.27.4` with the latest release version for the SDK
95+
Replace `1.28.0` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.28.0` 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

samples/Android/AndroidKeyChainPubSub/src/main/java/androidkeychainpubsub/pom.xml

Lines changed: 1 addition & 1 deletion
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.27.4</version>
23+
<version>1.28.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/Android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ android {
7575

7676
dependencies {
7777
implementation fileTree(dir: 'libs', include: ['*.jar'])
78-
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.27.4'
78+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.28.0'
7979
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
8080
implementation 'androidx.appcompat:appcompat:1.1.0'
8181
implementation 'androidx.core:core:1.2.0'

samples/Greengrass/Discovery/pom.xml

Lines changed: 1 addition & 1 deletion
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.27.4</version>
23+
<version>1.28.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/Greengrass/GreengrassIPC/pom.xml

Lines changed: 1 addition & 1 deletion
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.27.4</version>
23+
<version>1.28.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/Mqtt/Mqtt5AwsWebsocket/pom.xml

Lines changed: 1 addition & 1 deletion
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.27.4</version>
30+
<version>1.28.0</version>
3131
</dependency>
3232
</dependencies>
3333
</profile>

samples/Mqtt/Mqtt5CustomAuthSigned/pom.xml

Lines changed: 1 addition & 1 deletion
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.27.4</version>
30+
<version>1.28.0</version>
3131
</dependency>
3232
</dependencies>
3333
</profile>

samples/Mqtt/Mqtt5CustomAuthUnsigned/pom.xml

Lines changed: 1 addition & 1 deletion
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.27.4</version>
30+
<version>1.28.0</version>
3131
</dependency>
3232
</dependencies>
3333
</profile>

samples/Mqtt/Mqtt5Pkcs11/pom.xml

Lines changed: 1 addition & 1 deletion
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.27.4</version>
30+
<version>1.28.0</version>
3131
</dependency>
3232
</dependencies>
3333
</profile>

0 commit comments

Comments
 (0)