crash-reports

Crash reporting for MinGW applications

旧城冷巷雨未停 提交于 2019-12-31 08:57:11
问题 I have a c++ application compiled with MinGW for which I've been receiving crash complaints from customers. So, besides heavily logging in the parts that might be crashing (before releasing a new version), I've been looking for a crash reporter that will help me find out the stack trace and any other useful debugging information whenever an error arises. Does any such tool exist that is compatible with MinGW applications? (It seems that there is a close relation between then compiler and the

What does this crash log means?

北城以北 提交于 2019-12-31 04:47:39
问题 I have already done some research on identifying crash logs but couldn't find solution: Here are my references: http://www.raywenderlich.com/23704/demystifying-ios-application-crash-logs http://developer.apple.com/library/ios/#qa/qa1747/_index.html How to view crash report on xcode 4.2 I do come to know that it is because of Memory Issue but how to find that particular? In my project there are 200 files also there are 4-5 third party libraries are being used. Here is crash log: Incident

What is Native crash at /system/lib/libc.so?

北慕城南 提交于 2019-12-30 09:42:34
问题 I am getting crash while scrolling down and up a listview from my app but the error is not quite understandable. I am attaching the bug report screenshot from Google Developer Console. Please go through it. Adapter getView Code: public View getView(final int position, View convertView, ViewGroup parent) { ViewHolder holder = null; if (convertView == null) { holder = new ViewHolder(); convertView = mInflater.inflate(R.layout.adapter_item_list, parent, false); holder.labelName = (TextView)

How do I symbolicate a copy/pasted crash report?

早过忘川 提交于 2019-12-30 02:12:28
问题 I have a user who is experiencing a crash using the app store version of an iPhone app. The crash is not reported via iTunes connect and the user is unable to sync with iTunes and get me the .crash file (they don't have a computer). The user is, however, able to copy and paste the crash report from the phone under "Settings > general > about > Diagnostics & usage data". I took this users copied crash report and manually pasted it into a text file and renamed it with the .crash extension. When

How to symbolicate crash report from Apple received in .txt format not .crash format

孤人 提交于 2019-12-29 03:10:11
问题 My app got rejected from Apple and I have got crash reports in .txt format instead of .crash format. How can I symbolicate or read the crash report ? 回答1: When you get your crash report as a .txt file just follow these steps : Change the file extension .txt to .crash (eg mycrash.txt to mycrash.crash ). Create a new folder in desktop and copy the mycrash.crash file to the newly created folder. Copy the .dSYM file: update: download all DSYMs from appstoreconnect activity- they are properly

SIGSEGV : Sporadic crash issue

梦想的初衷 提交于 2019-12-25 09:47:39
问题 Here is my first attempt to solve crash issue in iOS app. Sharing some crash logs here. Exception Type: SIGSEGV Exception Codes: SEGV_ACCERR at 0x97ad6beb8 Crashed Thread: 11 Application Specific Information: objc_msgSend() selector name: length and here is my 11th thread. Thread 11 Crashed: 0 libobjc.A.dylib 0x0000000180558150 objc_msgSend + 16 1 Foundation 0x00000001824f3f60 -[NSString compare:] + 28 2 Foundation 0x00000001824d88e0 _NSCompareObject + 60 3 CoreFoundation 0x0000000181a99bd0 _

sending crash report via email using DefaultExceptionHandler

一世执手 提交于 2019-12-25 07:33:53
问题 background i'm trying to capture all crashes and allow the user to send my own customized error report via email. it's a very temporary solution since i need to send the logs of the app and other information . it is not intended to be sent to end users . only a very tiny group of testers. how it works anyway, i've created a class that extends from java.lang.Thread.UncaughtExceptionHandler , and that has a function uncaughtException() . i register to it using Thread

App crashes after launching on OS 3.1

允我心安 提交于 2019-12-24 15:42:13
问题 I need help to understand the crash log i received from the client. The app works fine on my phone but it crashes with him. I have OS 3.0 installed here while my client has upgraded to OS 3.1. Client reported app crashes usually when he starts the app. Why I am getting EXC_CRASH (SIGABRT)? Can anybody point me in the right direction here? Incident Identifier: AA3A4B6A-BD0D-473F-B1D2-EF9655A0116E CrashReporter Key: f3a4736dc8d450a3cb0ecb7367313dbbd816c484 Process: MyApp [730] Path: /var/mobile

Detect App Crash on Launch

限于喜欢 提交于 2019-12-24 12:38:19
问题 I saw a couple applications that detect whether an app crashed the last time it was used to encourage the user to report the bug. How can I do that? I tried this solution, but didn't get it to work in my swift project... An approach I thought of is to save something each time the app is about to be closed and then read the value when launching the app, I guess when the app crashes then it won't be able to save anything anymore, right? But, this is not very elegant. Is there a better way for

new Intent(Intent.ACTION_EDIT, ContactsContract.Profile.CONTENT_URI); is not working in Some of the devices like Oppo, Galaxy J7-6.0.0

那年仲夏 提交于 2019-12-24 02:49:45
问题 Hello Below the code to go in contact edit page is working fine in all the devices but it is not working in some of devices. Please help me. Intent intent1 = new Intent(Intent.ACTION_EDIT, ContactsContract.Profile.CONTENT_URI); startactivity(intent1) Below is the report of google prelaunch application test. 回答1: This things is not working in below devices as per the Alpha Prelaunch test 来源: https://stackoverflow.com/questions/45330091/new-intentintent-action-edit-contactscontract-profile