crash-reports

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:03
问题 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

Trigger “application quit unexpectedly” popup when OS X deamon crashes

风格不统一 提交于 2019-12-24 00:14:17
问题 I'm working on a new OS-X Daemon process (run from launchd) and would like to get popup window every time it crashes with all relevant information (pid, path to crash file, etc...). This will sure help my debugging effort in this early stage of the development. Basically, i want to have the same behavior as a UI application. For example : I've made some research and found out about the CrashReporter, but i don't know how to register my app to this service. But it seem like there's no way to

Android crash log annotation

邮差的信 提交于 2019-12-23 20:08:42
问题 Is it possible for an Android application to add additional lines to a crash log before it actually crashes in order to send better debugging information back to the developers? 回答1: Use Fabric or firebase crash analytics. They will provide you the crash logs. In your onCreate import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import com.crashlytics.android.Crashlytics; import io.fabric.sdk.android.Fabric; public

iOS Crash Log NSObject doesNotRecognizeSelector: - at which line?

与世无争的帅哥 提交于 2019-12-23 13:33:02
问题 I have recorded a crash of my app, but the last line in my app (5 Control) points just to the method begin. How do I know in which line the problem is? 0 CoreFoundation 0x185f0af50 __exceptionPreprocess + 132 1 libobjc.A.dylib 0x1924141fc objc_exception_throw + 60 2 CoreFoundation 0x185f0fc04 -[NSObject(NSObject) doesNotRecognizeSelector:] + 220 3 CoreFoundation 0x185f0d930 ___forwarding___ + 912 4 CoreFoundation 0x185e2d5dc _CF_forwarding_prep_0 + 92 5 Control 0x10005acb4 -

What to make of an “impossible” stack trace after a crash?

坚强是说给别人听的谎言 提交于 2019-12-23 12:22:27
问题 My program appears to be suffering from a very hard-to-reproduce bug: Once in a blue moon, when a user puts his Mac to sleep and later on wakes it back up again, one of my program's child processes will crash immediately after the Mac wakes up. When this happens Apple's crash-reporter mechanism reliably reports a stack trace like this one: Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x967f9a6a __pthread_kill + 10 1 libsystem_c.dylib 0x9003dacf pthread

How to get logs for the XCode application

橙三吉。 提交于 2019-12-23 12:07:15
问题 I'm looking for logs of the Xcode application itself. Not logs of my iOS app or device. I've been doing a bit of experimental work with the storyboard source code xml. Sometimes I'll get a random crash of Xcode or a message like "The document Main.storyboard' could not be opened. Could not verify document content" (This is not git conflict related) I'd like to look in the logs to see if it gives a clue as to what part of the xml is causing these crashes or errors. Note: I was able to find

Viewing Ad-Hoc crash reports from an iPhone

醉酒当歌 提交于 2019-12-23 03:09:51
问题 I'm doing some beta testing. I've got a crash and trying to figure it out. If I connect the iPhone, I can see the Crash Report in the XCode organizer. So I see this (my app is called Lineskipper): Thread 0 Crashed: 0 libobjc.A.dylib 0x323fe6f4 0x323fc000 + 9972 1 UIKit 0x32ba205e 0x32b60000 + 270430 2 UIKit 0x32ba1ffe 0x32b60000 + 270334 3 UIKit 0x32ba1fd0 0x32b60000 + 270288 4 UIKit 0x32ba1d2a 0x32b60000 + 269610 5 UIKit 0x32ba263e 0x32b60000 + 271934 6 UIKit 0x32ba1656 0x32b60000 + 267862 7

crashing application when accessing phonebook ios

筅森魡賤 提交于 2019-12-23 01:06:56
问题 ios memory leak when accessing phone book here is my orignal question and this is crash log. Memory leak problem has been resolved but application is crash when I access the contact and pop to navigation controller again push and accessing the contact, repeating this process 3-4 time and app will crash. crash log: Aug 6 19:11:08 IPad <Warning>: Fetching contact info ----> Aug 6 19:11:08 IPad <Notice>: (Warn ) [ABLog]: <ABSource.c ABAddressBookCopyDefaultSource:111> Actual default source doesn

iOS app cannot be opened after update

﹥>﹥吖頭↗ 提交于 2019-12-22 11:37:11
问题 We have an app live in the app store for almost an year, and we've been receiving several bad reviews from customer which cannot open the app after updating it. Users have reported they are unable to launch the application following deleting and subsequently reinstalling the application. One user did indicate they could launch the application only following a factory reset of their iPhone. We believed the issue was related to the Keychain, since this seems to be persistent in the system. For

Why is restart needed to send crash log on iOS?

℡╲_俬逩灬. 提交于 2019-12-22 10:29:25
问题 With a custom crash reporting system (like the ones specialized at Ask the user to send crash log after crash on iPhone) to send the log, the app needs to restart. Why? Isn't there a possibility to send it during the custom exception handling? Or is there a crash reporting system that doesn't need to restart the app? 回答1: When a crash occurs the app is in a highly unstable state. So a crash reporting library can not do anything since even allocating memory at crash time may cause way more