Skip to content

Commit 22312ae

Browse files
bretambroseBret Ambrose
andauthored
Update CRT version to pull in eventstream RPC crash fix (#437)
* Update CRT version to pull in eventstream RPC crash fix --------- Co-authored-by: Bret Ambrose <[email protected]>
1 parent 02a2c6c commit 22312ae

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ mvn versions:use-latest-versions -Dincludes="software.amazon.awssdk.crt*"
9191
mkdir sdk-workspace
9292
cd sdk-workspace
9393
# Clone the CRT repository
94-
# (Use the latest version of the CRT here instead of "v0.22.1")
95-
git clone --branch v0.22.1 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
94+
# (Use the latest version of the CRT here instead of "v0.22.5")
95+
git clone --branch v0.22.5 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
9696
cd aws-crt-java
9797
# Compile and install the CRT
9898
mvn install -Dmaven.test.skip=true
@@ -113,8 +113,8 @@ NOTE: The shadow sample does not currently complete on android due to its depend
113113
mkdir sdk-workspace
114114
cd sdk-workspace
115115
# Clone the CRT repository
116-
# (Use the latest version of the CRT here instead of "v0.22.1")
117-
git clone --branch v0.22.1 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
116+
# (Use the latest version of the CRT here instead of "v0.22.5")
117+
git clone --branch v0.22.5 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
118118
# Compile and install the CRT for Android
119119
cd aws-crt-java/android
120120
./gradlew connectedCheck # optional, will run the unit tests on any connected devices/emulators
@@ -139,12 +139,12 @@ repositories {
139139
}
140140
141141
dependencies {
142-
implementation 'software.amazon.awssdk.crt:android:0.22.1'
142+
implementation 'software.amazon.awssdk.crt:android:0.22.5'
143143
}
144144
```
145145
[Android IoT Samples README](./android/app/src/main/assets/README.md)
146146

147-
Replace `0.22.1` in `software.amazon.awssdk.crt:android:0.22.1` with the latest version of the CRT.
147+
Replace `0.22.5` in `software.amazon.awssdk.crt:android:0.22.5` with the latest version of the CRT.
148148
Look up the latest CRT version here: https://github.com/awslabs/aws-crt-java/releases
149149

150150
## Samples

android/iotdevicesdk/build.gradle

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

9393
dependencies {
94-
api 'software.amazon.awssdk.crt:aws-crt-android:0.22.1'
94+
api 'software.amazon.awssdk.crt:aws-crt-android:0.22.5'
9595
implementation 'org.slf4j:slf4j-api:1.7.30'
9696
implementation 'com.google.code.gson:gson:2.9.0'
9797
implementation 'androidx.appcompat:appcompat:1.1.0'

sdk/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>software.amazon.awssdk.crt</groupId>
4444
<artifactId>aws-crt</artifactId>
45-
<version>0.22.1</version>
45+
<version>0.22.5</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>org.slf4j</groupId>

0 commit comments

Comments
 (0)