Skip to content

Commit

Permalink
chore(deps): update Cocoa SDK to v8.30.0 (#2132)
Browse files Browse the repository at this point in the history
* chore: update flutter/scripts/update-cocoa.sh to 8.30.0

* Update

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>
  • Loading branch information
3 people authored Jun 25, 2024
1 parent e4d5aa8 commit 98d9a4a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 28 deletions.
2 changes: 1 addition & 1 deletion flutter/ios/sentry_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Sentry SDK for Flutter with support to native through sentry-cocoa.
:tag => s.version.to_s }
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Sentry/HybridSDK', '8.29.1'
s.dependency 'Sentry/HybridSDK', '8.30.0'
s.ios.dependency 'Flutter'
s.osx.dependency 'FlutterMacOS'
s.ios.deployment_target = '12.0'
Expand Down
27 changes: 0 additions & 27 deletions flutter/lib/src/native/cocoa/binding.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30112,12 +30112,6 @@ class SentryCocoa {
ffi.Pointer<ObjCObject> Function(ffi.Pointer<ObjCObject>,
ffi.Pointer<ObjCSel>, ffi.Pointer<ObjCObject>)>();

late final _sel_captureReplay1 = _registerName1("captureReplay");
late final _sel_getReplayId1 = _registerName1("getReplayId");
late final _sel_addReplayIgnoreClasses_1 =
_registerName1("addReplayIgnoreClasses:");
late final _sel_addReplayRedactClasses_1 =
_registerName1("addReplayRedactClasses:");
late final _class_SentryCurrentDateProvider1 =
_getClass1("SentryCurrentDateProvider");
late final _sel_timezoneOffset1 = _registerName1("timezoneOffset");
Expand Down Expand Up @@ -70897,27 +70891,6 @@ class PrivateSentrySDKOnly extends NSObject {
return SentryBreadcrumb._(_ret, _lib, retain: true, release: true);
}

static void captureReplay(SentryCocoa _lib) {
_lib._objc_msgSend_1(
_lib._class_PrivateSentrySDKOnly1, _lib._sel_captureReplay1);
}

static NSString getReplayId(SentryCocoa _lib) {
final _ret = _lib._objc_msgSend_20(
_lib._class_PrivateSentrySDKOnly1, _lib._sel_getReplayId1);
return NSString._(_ret, _lib, retain: true, release: true);
}

static void addReplayIgnoreClasses_(SentryCocoa _lib, NSArray? classes) {
_lib._objc_msgSend_441(_lib._class_PrivateSentrySDKOnly1,
_lib._sel_addReplayIgnoreClasses_1, classes?._id ?? ffi.nullptr);
}

static void addReplayRedactClasses_(SentryCocoa _lib, NSArray? classes) {
_lib._objc_msgSend_441(_lib._class_PrivateSentrySDKOnly1,
_lib._sel_addReplayRedactClasses_1, classes?._id ?? ffi.nullptr);
}

@override
PrivateSentrySDKOnly init() {
final _ret = _lib._objc_msgSend_2(_id, _lib._sel_init1);
Expand Down

0 comments on commit 98d9a4a

Please sign in to comment.