Field | Description |
---|---|
Path | The path of our application at the time of the crash on the user’s device: /private/var/containers/Bundle/Application/70CC1A20-0BBC-4BEC-85CB-497F7CAE0552/Wallapop.app/Wallapop |
Exception Type | EXC_BAD_ACCESS a type of an exception raised by the processor when an app attempts to access an illegal memory address. |
Exception Subtype | KERN_INVALID_ADDRESS at 0x0000000000000010 means that the kernel tried to access 0x10 which is an unexpected address that our app should not attempt to access. |
Thread 0 Crashed | The thread that crashed. In this case, it is the main thread. |
Crash Stack | 0 Wallapop 0x00000001024d7da4 WallapopTabBarController.selectChat() + 8 (WallapopTabBarController.swift:0) This is the function in which the crash occurred. |
Created
October 17, 2024 13:27
-
-
Save iMostfa/c9ff3bb0c2421d84080ca66974c6eabc to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment