crash-reports

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

妖精的绣舞 提交于 2019-12-01 05:54:31
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) convertView .findViewById(R.id.item_label); holder.labelInfo = (TextView) convertView .findViewById(R.id

WebThread JavaScriptCore crash - what this crash report means

家住魔仙堡 提交于 2019-12-01 05:37:35
I need help in understanding this crash log from a test user. I did not write any JavaScriptCore related code in my app. I still don't know how to reproduce this crash. Any insights about this problem would be helpful to me in finding this problem. Thanks, P.S My app is using Admob mediation. I don't know if it has some relation about this. Incident Identifier: 7B6EFFFF-4D55-48AE-8FE8-A55590405F0A CrashReporter Key: ef1ad783966254a93308221f30f17134c95879f7 Hardware Model: iPad5,3 Process: ???? [2325] Path: /private/var/mobile/Containers/Bundle/Application/16AE72E1-A8C8-45D9-955F-A6F96FCCE800/?

WebThread JavaScriptCore crash - what this crash report means

限于喜欢 提交于 2019-12-01 03:48:47
问题 I need help in understanding this crash log from a test user. I did not write any JavaScriptCore related code in my app. I still don't know how to reproduce this crash. Any insights about this problem would be helpful to me in finding this problem. Thanks, P.S My app is using Admob mediation. I don't know if it has some relation about this. Incident Identifier: 7B6EFFFF-4D55-48AE-8FE8-A55590405F0A CrashReporter Key: ef1ad783966254a93308221f30f17134c95879f7 Hardware Model: iPad5,3 Process: ???

In App Purchase causes occasional crash

我怕爱的太早我们不能终老 提交于 2019-12-01 01:05:10
I've searched the internet for help on this but to no avail. My app is live on the app store and a minority of users are reporting the app freezing on them and crashing after making an In App Purchase (the only IAP in my game, it basically unlocks the full version). Even when they restart their device and try to continue, it crashes again. I haven't been able to reproduce the crash - here is the crash report: {"bug_type":"109","os_version":"iPhone OS 9.2 (13C75)","timestamp":"2015-12-12 15:34:59.59 +0000","build_version":"1","app_name":"MyApp","bundleID":"com.MyName.MyApp","name":"MyApp","is

Catching application crash events

喜夏-厌秋 提交于 2019-11-30 23:00:39
I made a application in VB.Net. But some users face crash upon startup. That is "A problem caused this program from working correctly" with just one button "Close the program". Since there are lot of things happening when the app loads, is it possible to know what caused the issue? If the "Application Framework" is enabled in your project's properties, click the "View Application Events" button on the "Application" project properties page. Then add an event handler: Partial Friend Class MyApplication Private Sub MyApplication_UnhandledException(ByVal sender As Object, ByVal e As Microsoft

Start a service from Thread.UncaughtExceptionHandler?

爱⌒轻易说出口 提交于 2019-11-30 22:41:13
I'm trying to setup a global exception handling service as mentioned in this answer . This approach sounds logical because after a crash, the code in my custom Thread.UncaughtExceptionHandler may not execute successfully, either because the application may not be in a stable state or because there may not be enough time before the process is killed by the OS. Unfortunately, this approach doesn't seem to work because the service launches in the same process so it, too, is killed. How can I start a service from the handler's uncaughtException() ? Can I force the service to launch in a completely

App crashing on runTransitionForCurrentState but no clue as to why

限于喜欢 提交于 2019-11-30 21:15:50
I've tried searching for this, but no luck, so hoping there are some guru's who may know the answer. I'm seeing loads of reports in iTunes Connect of my app crashing with a particular stack trace, but the stack trace reveals nothing useful. #0. Crashed: main 0 UIKit 0x1871100c0 __56-[UIPresentationController runTransitionForCurrentState]_block_invoke + 324 1 UIKit 0x1871100bc __56-[UIPresentationController runTransitionForCurrentState]_block_invoke + 320 2 UIKit 0x1870630c8 _runAfterCACommitDeferredBlocks + 292 3 UIKit 0x187070a80 _cleanUpAfterCAFlushAndRunDeferredBlocks + 92 4 UIKit

how can I send log information from my Android app to my server?

懵懂的女人 提交于 2019-11-30 19:04:00
I'm developing an Android app that is currently in the Play Store. I've been getting reports of a crash on certain devices that I can't reproduce, and the Play Store's built in crash diagnostics don't contain enough information. What I really need is the Logcat information from these devices, but it seems that Android 4.1 and above don't allow the use of those "Log Collector" apps that used to be so popular for this purpose due to security concerns. Is there a library that I can add to my app that will allow it to log to a remote server on demand? I know enough about this crash that I could

iOS: How to get stack trace of an unhandled std::exception?

强颜欢笑 提交于 2019-11-30 18:29:17
If an unhandled NSException is thrown, the stack trace has a section like this: Last Exception Backtrace: 0 CoreFoundation 0x32bd688f __exceptionPreprocess + 163 1 libobjc.A.dylib 0x34b7b259 objc_exception_throw + 33 2 CoreFoundation 0x32bd65c5 -[NSException init] + 1 3 Foundation 0x37296bd7 -[NSObject(NSKeyValueCoding) valueForUndefinedKey:] + 263 ... But if std::exception is thrown, i get only this: Thread 0 Crashed: 0 libsystem_kernel.dylib 0x34f2632c __pthread_kill + 8 1 libsystem_c.dylib 0x31e4c208 pthread_kill + 48 2 libsystem_c.dylib 0x31e45298 abort + 88 3 libc++abi.dylib 0x33bcaf64

Catching application crash events

为君一笑 提交于 2019-11-30 17:52:57
问题 I made a application in VB.Net. But some users face crash upon startup. That is "A problem caused this program from working correctly" with just one button "Close the program". Since there are lot of things happening when the app loads, is it possible to know what caused the issue? 回答1: If the "Application Framework" is enabled in your project's properties, click the "View Application Events" button on the "Application" project properties page. Then add an event handler: Partial Friend Class