crash-reports

How to get iPhone crash log from customers?

﹥>﹥吖頭↗ 提交于 2019-11-27 03:27:44
Does anyone knows how to get crash logs from customers? Instead of manually asking them to sync and go to this directory and this directory and send it. Is there any automatic way to do send a crash report to our server? You can perform your own crash-logging with PLCrashReporter . Typically, you write the crash log to a file and then send it to a server the next time the app starts. In order to prevent an infinite crash-reporting loop (there was one in an early version), you want to do things in a specific order: Read the file to memory and delete it. (Hopefully this won't crash.) Parse the

iOS 8 NSInternalInconsistencyException

旧城冷巷雨未停 提交于 2019-11-27 02:06:55
问题 I get the following crash reports. They only occur on devices with iOS 8. Notice the message: Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'this request has been neutered - you can't call -sendResponse: twice nor after encoding it' Crash report: Date/Time: 2014-08-31T01:39:15Z OS Version: iPhone OS 8.0 (12A4345d) Report Version: 104 Exception Type: SIGABRT Exception Codes: #0 at 0x1964cb270 Crashed Thread: 0 Application Specific Information: ***

Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), thread 32140

风流意气都作罢 提交于 2019-11-27 00:37:14
问题 50% of the time when running my app I'm getting this error 06-20 12:56:51.183: A/libc(32140): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), thread 32140 (example.www) I just have to reopen the app and then it works. But I don't know why I'm getting this error and the app crashes. I'm working with big images with dimensions, almost 1200x1200px and setting that as a background. I also use that image as a bitmap for some other activities as background. Also doing some calls to a server and

How to debug w3wp clr.dll error

偶尔善良 提交于 2019-11-26 23:43:29
My client has an ASP.NET application installed on two production servers (balanced with NLB, but that's irrelevant). Both servers crash every 3-4 hours with the following event viewer logged error: Faulting application name: w3wp.exe, version: 7.5.7601.17514, time stamp: 0x4ce7afa2 Faulting module name: clr.dll, version: 4.0.30319.18034, time stamp: 0x50b5a783 Exception code: 0xc00000fd Fault offset: 0x000000000001a840 Faulting process id: 0xd50 Faulting application start time: 0x01ce97fe076d27b4 Faulting application path: c:\windows\system32\inetsrv\w3wp.exe Faulting module path: C:\Windows

How to integrate Crashlytics into an iOS framework target?

*爱你&永不变心* 提交于 2019-11-26 21:51:37
问题 I have an iOS framework target, and I need integrate Crash reporting system for it. So Crashlytics looks good, but This Xcode project does not have any Mac or iOS targets So, is there any way to integrate Crashlytics directly into iOS framework? 回答1: Thanks Mike Bonnell for your comment here, which says: Sure, our SDK only supports being initialized once. Being initialized in a framework and application would cause a conflict. You and the app developer would have different API keys and there

java.lang.ClassNotFoundException in dalvik.system.BaseDexClassLoader.findClass

家住魔仙堡 提交于 2019-11-26 21:04:56
问题 This error is driving me crazy. My app crashes at startup when downloaded from the Google Play Store with the error: java.lang.ClassNotFoundException in dalvik.system.BaseDexClassLoader.findClass My app doesn't crash when build from eclipse on our two devices. However a month ago a client used his phone to build our app in and then it also crashed on startup. I ignored the problem then because it was working on our devices and figured it had something to do with Google Map keys or Keystore.

KERN_INVALID_ADDRESS

浪尽此生 提交于 2019-11-26 20:57:25
问题 I got this Crash often Can you please help me to find out solution Incident Identifier: BC2870F3-4119-462B-9B2E-2236E403E7C2 CrashReporter Key: 7d9cc50413d82f64739259a761dbb92e755b623d Hardware Model: iPhone3,1 Process: project name [16361] Path: /var/mobile/Applications/7190A4F4-3A65-4663-9BEC-389AAFFE9851/project name.app/project name Identifier: project name Version: ??? (???) Code Type: ARM (Native) Parent Process: launchd [1] Date/Time: 2012-06-29 18:23:33.732 -0700 OS Version: iPhone OS

How to prevent iOS crash reporters from crashing MonoTouch apps?

折月煮酒 提交于 2019-11-26 18:46:53
问题 There are plenty iOS crash reporting libraries in iOS, including TestFlight and HockeyApp. If you don't want to depend on services, you can still use libraries like PLCrashReporter. Binding these libraries is fairly trivial because their public API usually consists of a couple of classes with several initialization methods. However, when trying to use TestFlight, and later HockeyApp in our application, our app began to randomly crash. Turns out, this is a known issue reported several times,

EXC_BAD_ACCESS automatic handling

ぃ、小莉子 提交于 2019-11-26 15:58:34
问题 I'm trying to build my own signal and uncaught exception handler for iOS. To do this i use these two functions : NSSetUncaughtExceptionHandler(/*handler*/); and signal(/*signal const*/, /*signal handler*/); My problem is that i can't make it work with EXC_BAD_ACCESS signal. Is there some signal constant (like SIGABRT, SIGBUS) to catch the EXC_BAD_ACCESS? If no, how can i handle it? Some crash analytics tools (lika PLCrashReporter, Crashlytics etc.) can trace it... 回答1: EXC_BAD_ACCESS doesn't

Android crash reporting library (pre Froyo) [duplicate]

一个人想着一个人 提交于 2019-11-26 15:17:31
问题 This question already has answers here : How do I obtain crash-data from my Android application? (30 answers) Closed 6 years ago . Do you know any crash reporting library for Android? I don't want to spend a lot of time to write my own reporting system. The output can be send to the email or some kind of server. I know that Google introduced crash reporting in Froyo, but I want something for older versions of the system. Let's sum up the answers: android-remote-stacktrace - sends raports to