crash-reports

Android - how to send crash reports?

心已入冬 提交于 2019-12-02 17:19:05
It seems that as of Android 2.2, there is a new feature for sending crash reports, as mentioned in the links: http://www.androidcentral.com/new-android-app-crash-report-tool-already-and-running http://android-developers.blogspot.com/2010/05/google-feedback-for-android.html http://developer.android.com/sdk/android-2.2-highlights.html http://www.youtube.com/watch?v=o8unC9bA4O8 How do I use this feature? Is it automatic for each application downloaded from the market (aka Google Play Store)? Where can I find more info about this feature? Also, is it possible to customize what is being sent,

How to symbolicate Mac OSX crash reports issued by Apple?

拜拜、爱过 提交于 2019-12-02 16:47:53
For iOS crash reports, it is sufficient to drag and drop the crash report to the Organizer. Symbolicating iPhone App Crash Reports But this method doesn't work for Mac OSX crash reports. How can I symbolicate my Mac OSX crash report ? Thanks !! You can use the atos command to get the line number where the app crashed. Heres a quick guide: Create a directory for your working files Open Xcode, select Window->Organizer, goto the Archive tab and find the version of your app that experienced the crash. Right click on the app archive and select "Show in Finder" Right click on the .xarchive, select

Comparison between TestFlight Live, QuincyKit and Crashlytics

天大地大妈咪最大 提交于 2019-12-02 14:07:00
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 since they provide more sophisticated reports and other interesting stuff. My goal is to have as many

JBoss / HotSpot JVM crashing

99封情书 提交于 2019-12-02 12:27:51
问题 We have a web app built on Jboss that has been in production for several years; for the last 18 months it has never gone down. However, in the last two days, the jvm has crashed 4 times. When the JVM crashes, we get a error report that I am struggling to decipher. I have looked at several other crash reports (on this site and others), but none are exactly like ours; and because I'm a novice at reading them, I can't tell what I'm missing. [Edited crash reports to add more information] I had

parse.com 1.6 crash analytics not working

微笑、不失礼 提交于 2019-12-02 11:56:44
问题 Parse version 1.6 Crash analytics are not working. I am not able to see the crash logs in dashboard. Configured my app according to this: https://parse.com/docs/ios_guide#crashreporting/iOS I see the following message when I run the app on simulator: Breakpad Uploader: unable to determine minidump file length Any help is highly appreciated. 回答1: I suggest you to try using the device for testing the crash report feature, as by design the simulator doesn't work. "Crash Reporting for iOS only

simple c program keeps crashing

不想你离开。 提交于 2019-12-02 11:37:29
问题 #include <stdio.h> int main(void) { int a,b,c; printf("Enter values of a,b,c:"); scanf("%d %d %d",a,b,c); printf("\nDescending order of the numbers entered:"); /*Test for Biggest Number*/ if((a>b)&&(a>c)) printf("%d",a); else if((b>a)&&(b>c)) printf("%d",b); else if((c>a)&&(c>b)) printf("%d",c); /*Test for Second Biggest Number*/ if((a>b&&a<c)||(a<b&&a>c)) printf("%d",a); else if((b>a&&b<c)||(b<a&&b>c)) printf("%d",b); else if((c>a&&c<b)||(c<a&&c>b)) printf("%d",c); /*Test for Smallest Number

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

独自空忆成欢 提交于 2019-12-02 11:09:05
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. 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 . You can inject a third party code in your app, which would basically save your crash reports and thereafter you can use

What can cause this SIGSEGV error?

偶尔善良 提交于 2019-12-02 09:50:06
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 before it would be good to hear their problem and resolution. The crash log: Incident Identifier: TODO

Android app always crashing

纵饮孤独 提交于 2019-12-02 09:00:25
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 shows on my console. Maybe it has something to do with the version of the API i'm using? 07-04 11:28:35

Fatal signal 11 (SIGSEGV), code 1, fault addr 0x48 in tid 21741 (RenderThread) in android in rear case in some device

感情迁移 提交于 2019-12-02 08:50:52
问题 Fatal signal 11 (SIGSEGV), code 1, fault addr 0x48 in tid 21741 (RenderThread) in occured in the rearest case in some device.If anyone knows please answer.Due to this error android application crash at every activity. <activity android:name=".HomeActivity"/> crash 回答1: Solved. just add: android:hardwareAccelerated="false" in manifest file in activity <activity android:hardwareAccelerated="false" android:name=".HomeActivity"/> Reference: Hardware Acceleration. 来源: https://stackoverflow.com