Skip to content

Instantly share code, notes, and snippets.

@iMostfa
Created October 17, 2024 13:27
Show Gist options
  • Save iMostfa/c9ff3bb0c2421d84080ca66974c6eabc to your computer and use it in GitHub Desktop.
Save iMostfa/c9ff3bb0c2421d84080ca66974c6eabc to your computer and use it in GitHub Desktop.
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment