Skip to content

Commit 2ae4eda

Browse files
[v1.17.5] Android Bug Fixes (#505)
Co-authored-by: GitHub Actions <[email protected]>
1 parent dacff4d commit 2ae4eda

File tree

21 files changed

+28
-28
lines changed

21 files changed

+28
-28
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.4</version>
40+
<version>1.17.5</version>
4141
</dependency>
4242
```
4343

44-
Replace `1.17.4` in `<version>1.17.4</version>` with the latest release version for the SDK.
44+
Replace `1.17.5` in `<version>1.17.5</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.4
97+
Latest released version: v1.17.5

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.4`)
51-
git clone --branch v1.17.4 --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.5`)
51+
git clone --branch v1.17.5 --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.4'
72+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.5'
7373
}
7474
```
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.
75+
Replace `1.17.5` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.5` 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.4'
87+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.5'
8888
}
8989
```
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
90+
Replace `1.17.5` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.5` 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.4'
64+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.17.5'
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.4</version>
23+
<version>1.17.5</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.4</version>
23+
<version>1.17.5</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.4</version>
23+
<version>1.17.5</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.4</version>
23+
<version>1.17.5</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.4</version>
23+
<version>1.17.5</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.4</version>
23+
<version>1.17.5</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/Greengrass/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.4</version>
23+
<version>1.17.5</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

0 commit comments

Comments
 (0)