@@ -90,8 +90,8 @@ mvn versions:use-latest-versions -Dincludes="software.amazon.awssdk.crt*"
90
90
mkdir sdk-workspace
91
91
cd sdk-workspace
92
92
# Clone the CRT repository
93
- # (Use the latest version of the CRT here instead of "v0.21.3 ")
94
- git clone --branch v0.21.3 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
93
+ # (Use the latest version of the CRT here instead of "v0.21.4 ")
94
+ git clone --branch v0.21.4 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
95
95
cd aws-crt-java
96
96
# Compile and install the CRT
97
97
mvn install -Dmaven.test.skip=true
@@ -112,8 +112,8 @@ NOTE: The shadow sample does not currently complete on android due to its depend
112
112
mkdir sdk-workspace
113
113
cd sdk-workspace
114
114
# Clone the CRT repository
115
- # (Use the latest version of the CRT here instead of "v0.21.3 ")
116
- git clone --branch v0.21.3 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
115
+ # (Use the latest version of the CRT here instead of "v0.21.4 ")
116
+ git clone --branch v0.21.4 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
117
117
# Compile and install the CRT for Android
118
118
cd aws-crt-java/android
119
119
./gradlew connectedCheck # optional, will run the unit tests on any connected devices/emulators
@@ -138,11 +138,11 @@ repositories {
138
138
}
139
139
140
140
dependencies {
141
- implementation 'software.amazon.awssdk.crt:android:0.21.3 '
141
+ implementation 'software.amazon.awssdk.crt:android:0.21.4 '
142
142
}
143
143
```
144
144
145
- Replace ` 0.21.3 ` in ` software.amazon.awssdk.crt:android:0.21.3 ` with the latest version of the CRT.
145
+ Replace ` 0.21.4 ` in ` software.amazon.awssdk.crt:android:0.21.4 ` with the latest version of the CRT.
146
146
Look up the latest CRT version here: https://github.com/awslabs/aws-crt-java/releases
147
147
148
148
#### Caution
0 commit comments