@@ -47,8 +47,8 @@ NOTE: The shadow sample does not currently complete on android due to its depend
47
47
mkdir sdk-workspace
48
48
cd sdk-workspace
49
49
# Clone the SDK repository
50
- # (Use the latest version of the SDK here instead of `v1.18.1 `)
51
- git clone --branch v1.18.1 --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.19.0 `)
51
+ git clone --branch v1.19.0 --recurse-submodules https://github.com/aws/aws-iot-device-sdk-java-v2.git
52
52
# Compile and install the SDK for Android
53
53
cd aws-iot-device-sdk-java-v2/android
54
54
./gradlew build
@@ -69,10 +69,10 @@ repositories {
69
69
}
70
70
71
71
dependencies {
72
- api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.18.1 '
72
+ api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.0 '
73
73
}
74
74
```
75
- Replace ` 1.18.1 ` in ` software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.18.1 ` with the latest release version for the SDK.
75
+ Replace ` 1.19.0 ` in ` software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.0 ` with the latest release version for the SDK.
76
76
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
77
77
78
78
### Consuming from locally installed
@@ -84,10 +84,10 @@ repositories {
84
84
}
85
85
86
86
dependencies {
87
- api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.18.1 '
87
+ api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.0 '
88
88
}
89
89
```
90
- Replace ` 1.18.1 ` in ` software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.18.1 ` with the latest release version for the SDK
90
+ Replace ` 1.19.0 ` in ` software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.0 ` with the latest release version for the SDK
91
91
or replace with ` 1.0.0-SNAPSHOT ` to use the SDK built and installed from source.
92
92
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
93
93
0 commit comments