Skip to content

Commit 57e0069

Browse files
chore: update scripts/update-android.sh to 8.46.0 (#6357)
Co-authored-by: GitHub <noreply@github.com>
1 parent 3a3fba2 commit 57e0069

6 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212

1313
- Use the runtime's native `btoa` for envelope base64 encoding when available, to improve `captureEnvelope` performance. Falls back to the bundled JS encoder if `btoa` is missing ([#6351](https://github.com/getsentry/sentry-react-native/pull/6351)).
1414

15+
### Dependencies
16+
17+
- Bump Android SDK from v8.45.0 to v8.46.0 ([#6357](https://github.com/getsentry/sentry-react-native/pull/6357))
18+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8460)
19+
- [diff](https://github.com/getsentry/sentry-java/compare/8.45.0...8.46.0)
20+
1521
## 8.16.0
1622

1723
### Features

packages/core/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ android {
5252
}
5353
}
5454

55-
def sentryAndroidVersion = '8.45.0'
55+
def sentryAndroidVersion = '8.46.0'
5656

5757
dependencies {
5858
compileOnly files('libs/replay-stubs.jar')

packages/core/android/expo-handler/build.gradle

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

2121
dependencies {
2222
compileOnly project(':expo-modules-core')
23-
compileOnly 'io.sentry:sentry-android:8.45.0'
23+
compileOnly 'io.sentry:sentry-android:8.46.0'
2424
}
0 Bytes
Binary file not shown.

packages/core/android/replay-stubs/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ tasks.named('jar', Jar) {
1818
}
1919

2020
dependencies {
21-
compileOnly 'io.sentry:sentry:8.45.0'
21+
compileOnly 'io.sentry:sentry:8.46.0'
2222
}

packages/core/sentry.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import java.util.concurrent.atomic.AtomicBoolean
77
import java.util.regex.Pattern
88
import javax.inject.Inject
99

10-
val expectedSentryAndroidVersion = "8.45.0"
10+
val expectedSentryAndroidVersion = "8.46.0"
1111

1212
val sentryVersionCheckWarned = AtomicBoolean(false)
1313
project.configurations.configureEach {

0 commit comments

Comments
 (0)