Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat/refactor: add cocoa FFI binding
  • Loading branch information
vaind committed Sep 11, 2023
commit 9e9255d7314ea3a8f3bddb2cf82f441bfb8b09fb
1 change: 1 addition & 0 deletions flutter/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ build/
.cxx/

.vscode/launch.json
cocoa_bindings_temp
16 changes: 16 additions & 0 deletions flutter/ffi-cocoa.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: SentryCocoa
description: Sentry Cocoa SDK FFI binding.
language: objc
output: lib/src/sentry_cocoa.dart
headers:
entry-points:
- ./cocoa_bindings_temp/Sentry.framework/Versions/A/PrivateHeaders/PrivateSentrySDKOnly.h
- ./cocoa_bindings_temp/Sentry.framework/Versions/A/Headers/SentryId.h
compiler-opts:
- -DSENTRY_TARGET_PROFILING_SUPPORTED=1
- -DCOCOAPODS=1
exclude-all-by-default: true
objc-interfaces:
include:
- PrivateSentrySDKOnly
- SentryId
Loading