crash-reports

Selector name found in current argument registers: isEqual:

被刻印的时光 ゝ 提交于 2019-12-03 02:04:07
I am looking for some assistance with squashing a bug in an OSX app that i just can't work out. I am getting a logged error of: Selector name found in current argument registers: isEqual: But i can't for the life of me work out where it's coming from as the log is very unhelpful. Also i can't reproduce this on my own test systems, but it seems to be happening quite a lot on some of the beta testers machines. This only seems to happen on 10.9. Here is the log file for the crash: Incident Identifier: 77FAD32D-0316-489E-B898-9C084A4FF48A CrashReporter Key: A9FEF4E7-53F7-5FD1-AEDE-915C87BD437F

Forcing crash symbolication in crashes organizer and Xcode 7

无人久伴 提交于 2019-12-03 01:52:09
Currently, my crash organizer looks as follows. I have not really worked with crash logs before, but to me the crashes do not look symbolicated. I am unable to find where the app has crashed and for what reason. In addition, when I open the stack trace in the project, nothing is highlighted and I cannot tell and which line it crashed in the file. My question is: is there a way to symbolicate all these crashes from within the organizer, or must it be done through terminal? Thanks. What you're seeing is that the SDK classes like UITableView are symbolicated, but classes from your "YLSA" app are

XCode 4.6.3 crash everytime I open it on OS X 10.9.3

时光总嘲笑我的痴心妄想 提交于 2019-12-03 00:39:52
I updated Mavericks 10.9.2 to 10.9.3 and downloaded Xcode 6 beta. One of my project is still in Xcode 4.6.3. So now whenever I open this project Xcode crashes with the following pop up. It was working fine in OS X 10.9.2. Is it OS related issue? Please help Jayprakash Dubey I had similar issue. This can be fixed using `sudo mv /System/Library/PrivateFrameworks/MobileDevice.framework{,-saved}` This will ask for system component installation and then Xcode starts working. I recommend to use latest version of Xcode 6.x. Try this: sudo mv /System/Library/PrivateFrameworks/MobileDevice.framework{,

Comparison between TestFlight Live, QuincyKit and Crashlytics

青春壹個敷衍的年華 提交于 2019-12-03 00:33:38
问题 I am going to launch my app on the AppStore and I would like to keep track of crashes and fix them as soon as possible. If possible, it would be nice to collect also some additional information about user activity and other useful stuff. In order to do so, I have looked for some crash reporting tools and the most interesting ones I have found are: TestFlight Live, QuincyKit and Crashlytics. Among those three, QuincyKit should be the lightest one but the other two seem to be quite interesting

What can cause this SIGSEGV error?

被刻印的时光 ゝ 提交于 2019-12-02 22:29:48
问题 I received a crash log that I cannot explain. I have searched around and it appears that the SIGSEGV has something to do with memory. But in my case there is nothing of my own code except for the main.m in the stacktrace. Also it doesn't seem to symbolicate any of the system libraries. The crash so far only happened on one iPhone. On other phones I haven't been able to reproduce it. Right now I'm completely stuck and don't know where to continue so if anyone has seen something like this

How to debug Android ANR?

回眸只為那壹抹淺笑 提交于 2019-12-02 22:16:09
My Android app gets a lot of ANR reports lately in the Google Play console. Since this started to happen when I included Google Analytics in the app, I strongly suspect Analytics to cause it. Problem is that I know how to debug a crash using the stack trace. But I'm not sure about how to debug an ANR. I guess that an ANR means that the main thread is blocked somewhere. But how to know where it is blocked? See below one of the typical ANR I got lately. How to interpret it and start figuring out where does the app hangs? PS: Some of the classes / methods in the stacks look weird due to the usage

Getting detailed crash dumps from a hooked exe

浪子不回头ぞ 提交于 2019-12-02 21:45:46
问题 I am trying find a problem with my program that is hooking into a game. This is vc++. Basically I launch the program and then hook into it using SDL. When I run the code from VS2010, all works fine. But when I try to run from command prompt, my program can launch the game, but after that the game crashes immediately. I was viewing windows event logs, and it appears that there is an access violation. 0xc000005 How can I log any further details about the program that crashes? I tried "procdump"

How to send Android Crash report using ACRA

人盡茶涼 提交于 2019-12-02 21:23:13
Am trying to send crash report from my applicatio to my domain or Mail but failed still. To get the crash report in mail, I did @ReportsCrashes( formKey = "", mailTo = "abc@gmail.com" ) And the response is, Sending file 1372758321000-approved.stacktrace checkAndSendReports - finish To get the crash report in my domain, I did @ReportsCrashes( formKey = "", formUri = "http://www.abc.com/test1" ) And the response is, Sending file 1372856882000-approved.stacktrace Failed to send crash report for 1372856882000-approved.stacktrace org.acra.sender.ReportSenderException: Error while sending FORM

Is there a way to have our own app to upload its crash repot?

孤街醉人 提交于 2019-12-02 21:05:22
问题 Not sure if that is possible. But what happens is, sometimes our app randomly crashes. We don't know what exactly the problem is. Is there a way for us to get the crash report off user's iphone? By code, or by another app? Thanks. 回答1: It's the user who decides from Settings > General > About > Diagnostics & Usage whether to automatically send crash reports or not. You can also use a third party component to get detailed information about crash events, for example Crittercism. 回答2: You can

Android app always crashing

邮差的信 提交于 2019-12-02 19:17:10
问题 I'm new at programming for android so i've started to follow tutorials on the internet, very simple stuff but when I compiled it in order to run on the emulator it always says: "Unfortunately your program has stopped" on my device emulator (nexus 4) so i thought I had an error on my java code. So I created a brand new project unmodified with the usual "hello world" so it should work, but when I'm going to run it appears the same thing. "Unfortunately your program has stopped". Here's what