You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 1, 2024. It is now read-only.
using ObjCRuntime;
using Firebase.Crashlytics;
...
var stackFramePointer = IntPtr_objc_msgSend_UIntPtr(new Class(typeof(StackFrame)).Handle, Selector.GetHandle("stackFrameWithAddress:"), (UIntPtr)address);
var stackFrame = Runtime.GetNSObject<StackFrame>(stackFramePointer);
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Calling
Firebase.Crashlytics.StackFrame.Create(nuint address)
causesunrecognized selector
exception.[Export]
attribute has wrong selector parameterstackFrameWithAddress:address
, while it must bestackFrameWithAddress:
.Workaround
You can invoke method directly as described in documentation.
Declare this method somewhere (usually, in class where you use it):
Then use it like this:
The text was updated successfully, but these errors were encountered: