Skip to content

Commit 0ebca77

Browse files
chore(deps): update Android SDK to v7.11.0 (#3926)
Co-authored-by: Krystof Woldrich <[email protected]>
1 parent 30e2d76 commit 0ebca77

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
- Bump Cocoa SDK from v8.29.1 to v8.30.0 ([#3914](https://github.com/getsentry/sentry-react-native/pull/3914))
1616
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8300)
1717
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.29.1...8.30.0)
18+
- Bump Android SDK from v7.10.0 to v7.11.0 ([#3926](https://github.com/getsentry/sentry-react-native/pull/3926))
19+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7110)
20+
- [diff](https://github.com/getsentry/sentry-java/compare/7.10.0...7.11.0)
1821

1922
## 5.24.1
2023

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ android {
5454

5555
dependencies {
5656
implementation 'com.facebook.react:react-native:+'
57-
api 'io.sentry:sentry-android:7.10.0'
57+
api 'io.sentry:sentry-android:7.11.0'
5858
}

android/src/main/java/io/sentry/react/RNSentryModuleImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ public void captureEnvelope(String rawBytes, ReadableMap options, Promise promis
398398
byte[] bytes = Base64.decode(rawBytes, Base64.DEFAULT);
399399

400400
try {
401-
InternalSentrySdk.captureEnvelope(bytes);
401+
InternalSentrySdk.captureEnvelope(bytes, false);
402402
} catch (Throwable e) {
403403
logger.log(SentryLevel.ERROR, "Error while capturing envelope");
404404
promise.resolve(false);

0 commit comments

Comments
 (0)