Skip to content

Commit 0bca07e

Browse files
authored
Fix aws-crt-jni.dll files filling up Windows temp dir. (#283)
Update to latest aws-crt. Contains [fix](awslabs/aws-crt-java#493) that, on startup, deletes any .dll files it finds from previous runs of the library.
1 parent c5337b1 commit 0bca07e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ mkdir sdk-workspace
8080
cd sdk-workspace
8181
# Clone the CRT repository
8282
# (Use the latest version of the CRT here instead of "v0.16.4")
83-
git clone --branch v0.16.12 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
83+
git clone --branch v0.16.13 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
8484
cd aws-crt-java
8585
# Compile and install the CRT
8686
mvn install -Dmaven.test.skip=true
@@ -102,7 +102,7 @@ mkdir sdk-workspace
102102
cd sdk-workspace
103103
# Clone the CRT repository
104104
# (Use the latest version of the CRT here instead of "v0.16.4")
105-
git clone --branch v0.16.12 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
105+
git clone --branch v0.16.13 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
106106
# Compile and install the CRT for Android
107107
cd aws-crt-java/android
108108
./gradlew connectedCheck # optional, will run the unit tests on any connected devices/emulators
@@ -126,7 +126,7 @@ repositories {
126126
}
127127
128128
dependencies {
129-
implementation 'software.amazon.awssdk.crt:android:0.16.12'
129+
implementation 'software.amazon.awssdk.crt:android:0.16.13'
130130
}
131131
```
132132

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.16.12'
94+
api 'software.amazon.awssdk.crt:aws-crt-android:0.16.13'
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.16.12</version>
45+
<version>0.16.13</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>org.slf4j</groupId>

0 commit comments

Comments
 (0)