Skip to content

Commit 4740474

Browse files
web-flowgithub-actions[bot]
authored andcommitted
chore: update flutter/scripts/update-cocoa.sh to 8.30.1
1 parent 3d305b9 commit 4740474

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

flutter/ios/sentry_flutter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Sentry SDK for Flutter with support to native through sentry-cocoa.
1616
:tag => s.version.to_s }
1717
s.source_files = 'Classes/**/*'
1818
s.public_header_files = 'Classes/**/*.h'
19-
s.dependency 'Sentry/HybridSDK', '8.30.0'
19+
s.dependency 'Sentry/HybridSDK', '8.30.1'
2020
s.ios.dependency 'Flutter'
2121
s.osx.dependency 'FlutterMacOS'
2222
s.ios.deployment_target = '12.0'

flutter/lib/src/native/cocoa/binding.dart

+13-10
Original file line numberDiff line numberDiff line change
@@ -37663,7 +37663,8 @@ class ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool extends _ObjCBlockBase {
3766337663
ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool.fromFunctionPointer(
3766437664
SentryCocoa lib,
3766537665
ffi.Pointer<
37666-
ffi.NativeFunction<
37666+
ffi
37667+
.NativeFunction<
3766737668
ffi.Bool Function(ffi.Pointer<ObjCObject> arg0,
3766837669
ffi.UnsignedLong arg1, ffi.Pointer<ffi.Bool> arg2)>>
3766937670
ptr)
@@ -42107,15 +42108,17 @@ class ObjCBlock_bool_ObjCObject_bool extends _ObjCBlockBase {
4210742108
ffi.Pointer<ffi.Bool> arg1)>>
4210842109
ptr)
4210942110
: this._(
42110-
lib._newBlock1(
42111-
_cFuncTrampoline ??= ffi.Pointer.fromFunction<
42112-
ffi.Bool Function(
42113-
ffi.Pointer<_ObjCBlock> block,
42114-
ffi.Pointer<ObjCObject> arg0,
42115-
ffi.Pointer<ffi.Bool> arg1)>(
42116-
_ObjCBlock_bool_ObjCObject_bool_fnPtrTrampoline, false)
42117-
.cast(),
42118-
ptr.cast()),
42111+
lib
42112+
._newBlock1(
42113+
_cFuncTrampoline ??= ffi.Pointer.fromFunction<
42114+
ffi.Bool Function(
42115+
ffi.Pointer<_ObjCBlock> block,
42116+
ffi.Pointer<ObjCObject> arg0,
42117+
ffi.Pointer<ffi.Bool> arg1)>(
42118+
_ObjCBlock_bool_ObjCObject_bool_fnPtrTrampoline,
42119+
false)
42120+
.cast(),
42121+
ptr.cast()),
4211942122
lib);
4212042123
static ffi.Pointer<ffi.Void>? _cFuncTrampoline;
4212142124

0 commit comments

Comments
 (0)