Skip to content

Commit

Permalink
chore(deps): update Android SDK to v7.11.0 (#3926)
Browse files Browse the repository at this point in the history
Co-authored-by: Krystof Woldrich <31292499+krystofwoldrich@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and krystofwoldrich authored Jul 2, 2024
1 parent 30e2d76 commit 0ebca77
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
- Bump Cocoa SDK from v8.29.1 to v8.30.0 ([#3914](https://github.com/getsentry/sentry-react-native/pull/3914))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8300)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.29.1...8.30.0)
- Bump Android SDK from v7.10.0 to v7.11.0 ([#3926](https://github.com/getsentry/sentry-react-native/pull/3926))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7110)
- [diff](https://github.com/getsentry/sentry-java/compare/7.10.0...7.11.0)

## 5.24.1

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ android {

dependencies {
implementation 'com.facebook.react:react-native:+'
api 'io.sentry:sentry-android:7.10.0'
api 'io.sentry:sentry-android:7.11.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ public void captureEnvelope(String rawBytes, ReadableMap options, Promise promis
byte[] bytes = Base64.decode(rawBytes, Base64.DEFAULT);

try {
InternalSentrySdk.captureEnvelope(bytes);
InternalSentrySdk.captureEnvelope(bytes, false);
} catch (Throwable e) {
logger.log(SentryLevel.ERROR, "Error while capturing envelope");
promise.resolve(false);
Expand Down

0 comments on commit 0ebca77

Please sign in to comment.