Skip to content

Commit d052aef

Browse files
github-actions[bot]web-flowbuenaflor
authored
chore(deps): update Android SDK to v8.33.0 (#3529)
* chore: update packages/flutter/scripts/update-android.sh to 8.33.0 * Update jni call when creating bitmap --------- Co-authored-by: GitHub <noreply@github.com> Co-authored-by: Giancarlo Buenaflor <giancarlobuenaflor97@gmail.com>
1 parent c6897c1 commit d052aef

File tree

4 files changed

+4609
-4453
lines changed

4 files changed

+4609
-4453
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
- Bump Native SDK from v0.12.6 to v0.12.8 ([#3514](https://github.com/getsentry/sentry-dart/pull/3514), [#3520](https://github.com/getsentry/sentry-dart/pull/3520))
1818
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0128)
1919
- [diff](https://github.com/getsentry/sentry-native/compare/0.12.6...0.12.8)
20+
- Bump Android SDK from v8.32.0 to v8.33.0 ([#3529](https://github.com/getsentry/sentry-dart/pull/3529))
21+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8330)
22+
- [diff](https://github.com/getsentry/sentry-java/compare/8.32.0...8.33.0)
2023

2124
## 9.13.0
2225

packages/flutter/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ android {
6262
}
6363

6464
dependencies {
65-
api 'io.sentry:sentry-android:8.32.0'
66-
debugImplementation 'io.sentry:sentry-spotlight:8.32.0'
65+
api 'io.sentry:sentry-android:8.33.0'
66+
debugImplementation 'io.sentry:sentry-spotlight:8.33.0'
6767
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
6868

6969
// Required -- JUnit 4 framework

packages/flutter/lib/src/native/java/android_replay_recorder.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ class _AndroidReplayHandler extends WorkerHandler {
131131

132132
// https://developer.android.com/reference/android/graphics/Bitmap#createBitmap(int,%20int,%20android.graphics.Bitmap.Config)
133133
// Note: while the generated API is nullable, the docs say the returned value cannot be null..
134-
_bitmap ??= native.Bitmap.createBitmap$3(
134+
_bitmap ??= native.Bitmap.createBitmap$10(
135135
item.width, item.height, native.Bitmap$Config.ARGB_8888);
136136

137137
jBuffer = JByteBuffer.fromList(item.data);

0 commit comments

Comments
 (0)