Questions tagged [crash-log]
119 questions
3
votes
0 answers
XCode 4.6 crash report stacktrace only
A customer send me this crash log, it only contains the stack trace. This stack trace is generated by a custom developed exception handler.
Exception message:
NSInvalidArgumentException
Exception Reason:
*** setObjectForKey: object cannot be nil…

Rob van der Veer
- 1,148
- 1
- 7
- 20
3
votes
2 answers
iPhone App Quits on Launch Without Crash Log
My application runs fine on 3.0 devices and on 3.1 devices when launched via Xcode, but crashes on startup when run on a 3.1 device when installed via iTunes. It leaves no crash log behind, but puts this into the console:
Thu Oct 1 19:33:36 unknown…

TALlama
- 16,017
- 8
- 38
- 47
3
votes
1 answer
Using the Crashlog to Debug iOS (the basics)
Alright, I'm stupid new at this. Can anyone point me in the direction of how to read the crashlog and use it to debug an app? I'm not looking for anyone to solve the problem. I'm just hoping for advice on how to go about learning to fix it myself so…

jonlink
- 542
- 6
- 18
2
votes
2 answers
iPhone crash only when device not connected to xcode, how to understand the crash log?
On a device running ios 5 my app works great, but on a device running ios 4.2.1 i get this crash.
The strange thing is that the device crash only when NOT connected to xcode.
When run from xcode it work but when i run it without xcode the app is…

Eyal
- 10,777
- 18
- 78
- 130
2
votes
1 answer
how do I understand what's causing app to crash from crash log?
This is my crash log:
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0xd1e5501b
Crashed Thread: 0
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 libobjc.A.dylib …

Prajoth
- 900
- 3
- 12
- 26
2
votes
2 answers
Help with crash log
My app is crashing on Lion when it awakes from sleep.
The problem seems to be with a background thread that is looking for weather info.
I'm not sure but I think the crash log is telling me that the autorelease pool is popping objects that are no…

the Reverend
- 12,305
- 10
- 66
- 121
2
votes
0 answers
iOS 13.6(17G68) arm64e system framework symbolicate failed
I have crash log, head infors like:
AppStoreTools: 11E707
AppVariant: 1:iPhone11,6:13
Beta: YES
Code Type: ARM-64 (Native)
Role: Foreground
Parent Process: launchd [1]
Coalition: …

x_z
- 460
- 5
- 18
2
votes
1 answer
How to Determine the Exact Location of Error from CrashLog Obtained from TestFlight
I obtained my crashlog from testflight.
crashlog.crash
Incident Identifier: F9255190-FC14-48E9-8C02-A54D5A410CBE
Beta Identifier: F6E379C0-91F6-4A43-9CD1-C922ACA4126E
Hardware Model: iPhone10,2
Process: ARMail [22660]
Path: …

impression7vx
- 1,728
- 1
- 20
- 50
2
votes
0 answers
How do I find the cause of crash from complicated crash log
Here is the crash log. From this what I understand there is a crash because of some null or array out of index thing.
Because the exception type is EXC_CRASH (SIGABRT) and exception note is EXC_CORPSE_NOTIFY
Other than that I don't understand…

Naveen
- 77
- 6
2
votes
2 answers
iOS app crashing in Core Location callback machinery
I have problems analyzing my crashlog. The iPhone crashes sometimes, when I click on the app icon to start the app. The app is already "running" in background, but it's not active. This is the symbolized crash log:
Thread 0 Crashed:
0 …

sqeez3r
- 495
- 6
- 16
2
votes
1 answer
Can I find crash logs for Android Studio anywhere?
Since the last few weeks or so, Android Studio crashes very often for me - about once an hour.
I want to know why it crashes and the first step would be to check some crash logs... Does anyone know where to find those?
(Also please tell me if you…

Joakim
- 3,224
- 3
- 29
- 53
2
votes
1 answer
Crashing on tableView reloadData includes crash report
Im using Crashlytics for crash management. I recently got this crash and I am trying to understand why this crash may have occurred.
Here is my UITableView+ReloadTransition.m:
#import "UITableView+ReloadTransition.h"
@implementation UITableView…

DevC
- 6,982
- 9
- 45
- 80
2
votes
1 answer
App crashes but no crashlogs on the device
Our current beta version of the app crashes sometimes, this happens to myself and my colleagues. The beta's are send with Apple's TestFlight app and I build it to my own phone. Phones are iPhone6 running latest iOS8.
When I hook each of them on my…

Sjoerd Perfors
- 2,317
- 22
- 37
2
votes
0 answers
@callee_owned in crashlog of iPhone application
I have crash log from my application. I don't understand this problem:
0 Test Application 0x000e0ccc Test_Application.firstVC.(firstFunc (Test_Application.firstVC) -> () -> ()).(closure #1) (firstVC.swift:110)
1 Test Application 0x000d7f10…

Max
- 1,341
- 3
- 20
- 39
2
votes
1 answer
What does ??? mean in iOS
I'm new to iOS, and the simple app I'm trying to code crashed with the following:
2014-07-18 22:21:19.006 Weather Client[1191:60b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIViewController…

Michael Nares
- 401
- 4
- 19