Skip to content

Commit dacff4d

Browse files
[v1.17.4] Android Bug Fixes (#503)
Co-authored-by: GitHub Actions <[email protected]>
1 parent 15fdb8d commit dacff4d

File tree

23 files changed

+30
-30
lines changed

23 files changed

+30
-30
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ Consuming this SDK via Maven is the preferred method of consuming it and using i
3737
<dependency>
3838
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
3939
<artifactId>aws-iot-device-sdk</artifactId>
40-
<version>1.17.3</version>
40+
<version>1.17.4</version>
4141
</dependency>
4242
```
4343

44-
Replace `1.17.3` in `<version>1.17.3</version>` with the latest release version for the SDK.
44+
Replace `1.17.4` in `<version>1.17.4</version>` with the latest release version for the SDK.
4545
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
4646

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

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

97-
Latest released version: v1.17.3
97+
Latest released version: v1.17.4

android/iotdevicesdk/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ repositories {
9292
}
9393

9494
dependencies {
95-
api 'software.amazon.awssdk.crt:aws-crt-android:0.28.0'
95+
api 'software.amazon.awssdk.crt:aws-crt-android:0.28.5'
9696
implementation 'org.slf4j:slf4j-api:1.7.30'
9797
implementation 'com.google.code.gson:gson:2.9.0'
9898
implementation 'androidx.appcompat:appcompat:1.1.0'

documents/ANDROID.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ NOTE: The shadow sample does not currently complete on android due to its depend
4747
mkdir sdk-workspace
4848
cd sdk-workspace
4949
# Clone the SDK repository
50-
# (Use the latest version of the SDK here instead of `v1.17.3`)
51-
git clone --branch v1.17.3 --recurse-submodules https://github.com/aws/aws-iot-device-sdk-java-v2.git
50+
# (Use the latest version of the SDK here instead of `v1.17.4`)
51+
git clone --branch v1.17.4 --recurse-submodules https://github.com/aws/aws-iot-device-sdk-java-v2.git
5252
# Compile and install the SDK for Android
5353
cd aws-iot-device-sdk-java-v2/android
5454
./gradlew build
@@ -69,10 +69,10 @@ repositories {
6969
}
7070
7171
dependencies {
72-
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.3'
72+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.4'
7373
}
7474
```
75-
Replace `1.17.3` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.3` with the latest release version for the SDK.
75+
Replace `1.17.4` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.4` with the latest release version for the SDK.
7676
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
7777

7878
### Consuming from locally installed
@@ -84,10 +84,10 @@ repositories {
8484
}
8585
8686
dependencies {
87-
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.3'
87+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.4'
8888
}
8989
```
90-
Replace `1.17.3` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.3` with the latest release version for the SDK
90+
Replace `1.17.4` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.4` with the latest release version for the SDK
9191
or replace with `1.0.0-SNAPSHOT` to use the SDK built and installed from source.
9292
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
9393

samples/Android/app/build.gradle

Lines changed: 1 addition & 1 deletion
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.17.3'
64+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.4'
6565
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
6666
implementation 'androidx.appcompat:appcompat:1.1.0'
6767
implementation 'androidx.core:core:1.2.0'

samples/BasicConnect/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.17.3</version>
23+
<version>1.17.4</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/BasicPubSub/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.17.3</version>
23+
<version>1.17.4</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/CognitoConnect/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.17.3</version>
23+
<version>1.17.4</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/CustomAuthorizerConnect/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.17.3</version>
23+
<version>1.17.4</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/CustomKeyOpsConnect/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.17.3</version>
23+
<version>1.17.4</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/FleetProvisioning/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.17.3</version>
23+
<version>1.17.4</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

0 commit comments

Comments
 (0)