crash

MyApp “has active assertions beyond permitted time” crash - CoreLocationRegistration and CoreLocationBackgroundClient

送分小仙女□ 提交于 2019-12-29 07:36:50
问题 Does anyone have any insight on why this crash log is happening? The app records the locations where the user goes. So it has the UIBackgroundModes's Location is set in Info.plist to continue getting location updates in background. According to the log, something seems to crash after 10 minutes. Incident Identifier: 4BA294E8-0DDF-4EC2-812A-20394F758A7F CrashReporter Key: 59997a4e160853691bc673802439c8c4b9ca7ba3 Hardware Model: iPhone3,1 Process: MyMapApp [1234] Path: /var/mobile/Applications

How to debug python script that is crashing python

Deadly 提交于 2019-12-29 05:22:23
问题 I'm trying to help debug a python script that is causing python (2.7) itself to crashes. The script logs some info to a file and it ends at a different stop on each run, or at least what it writes out is at a different spot. The script already have a try\catch's. The script has worked previously without errors This is on Window 2008 servers, with a fair bit of RAM and when run not much CPU usage. So my question: Are there tools or techniques that could help? I see that there is a pdb module I

App rejected twice but cannot reproduce the issue on iOS 9.2. I need help identifying it

ε祈祈猫儿з 提交于 2019-12-29 02:09:06
问题 I cannot reproduce the issue on any iPhone and iPad, all builds on Debug, Release and even the ad-hoc build installed with iTunes work just fine. This is an update of an already existing app. The only things added from the previous version are Notifications using Azure Notification Hubs and a version check. I am using the latest version of Xamarin iOS to create the app The supported Architectures are ARMv7 + ARM64 I have tried: Running the zombies instrument Minimizing startup load Part of

Assertion failure in -[UITableView _endCellAnimationsWithContext:]

删除回忆录丶 提交于 2019-12-28 09:33:07
问题 Hopefully this will be a quick fix. I have been trying to figure out the error that i keep getting. The error is listed below and the appdelagate is below that. Any help is appreciated. Thanks 2012-04-12 21:11:52.669 Chanda[75100:f803] --- Assertion failure in -[UITableView _endCellAnimationsWithContext:] , /SourceCache/UIKit_Sim/UIKit-1914.84/UITableView.m:1037 2012-04-12 21:11:52.671 Chanda[75100:f803] --- Terminating app due to uncaught exception ' NSInternalInconsistencyException ',

Assertion failure in -[UITableView _endCellAnimationsWithContext:]

懵懂的女人 提交于 2019-12-28 09:32:00
问题 Hopefully this will be a quick fix. I have been trying to figure out the error that i keep getting. The error is listed below and the appdelagate is below that. Any help is appreciated. Thanks 2012-04-12 21:11:52.669 Chanda[75100:f803] --- Assertion failure in -[UITableView _endCellAnimationsWithContext:] , /SourceCache/UIKit_Sim/UIKit-1914.84/UITableView.m:1037 2012-04-12 21:11:52.671 Chanda[75100:f803] --- Terminating app due to uncaught exception ' NSInternalInconsistencyException ',

iOS 8 Embedded YouTube in HTML web app fails

混江龙づ霸主 提交于 2019-12-28 09:13:46
问题 YouTube iOS8 Media Load Issue - Media plays successfully while in Safari, but when the app is loaded from a Home Screen web clip, playing the video fails. Moreover, tapping a link to navigate away from the page while the media is failing to load results in a complete crash of the app to the Home Screen. Here is a link that demonstrates this (obviously run on your iDevice). You can run it initially in Safari browser, it'll work fine. Install it as a home screen icon, playing video will fail,

C# : “A first chance exception of type 'System.InvalidOperationException'”

我是研究僧i 提交于 2019-12-28 03:51:30
问题 Working on a class assignment in C#, I came across a program crash without any error (except what's written in VS2010's debug window). Here is the typical code causing the crash : public partial class Test : Form { public Test() { InitializeComponent(); } private void Test_Load(object sender, EventArgs e) { ColumnHeader header; header = new ColumnHeader(); header.Text = "#"; header.TextAlign = HorizontalAlignment.Center; header.Width = 30; listView1.Columns.Add(header); TimerCallback tcb =

Dereferencing deleted pointers always result in an Access Violation?

风格不统一 提交于 2019-12-28 02:16:03
问题 I have a very simple C++ code here: char *s = new char[100]; strcpy(s, "HELLO"); delete [] s; int n = strlen(s); If I run this code from Visual C++ 2008 by pressing F5 (Start Debugging,) this always result in crash (Access Violation.) However, starting this executable outside the IDE, or using the IDE's Ctrl+F5 (Start without Debugging) doesn't result in any crash. What could be the difference? I also want to know if it's possible to stably reproduce the Access Violation crash caused from

What is the easiest way to make a C++ program crash?

偶尔善良 提交于 2019-12-28 01:39:39
问题 I'm trying to make a Python program that interfaces with a different crashy process (that's out of my hands). Unfortunately the program I'm interfacing with doesn't even crash reliably! So I want to make a quick C++ program that crashes on purpose but I don't actually know the best and shortest way to do that, does anyone know what to put between my: int main() { crashyCodeGoesHere(); } to make my C++ program crash reliably 回答1: The abort() function is probably your best bet. It's part of the

Android app crashes after SDK-tools update version (NoClassDefFound, tool version 22)

时光总嘲笑我的痴心妄想 提交于 2019-12-27 21:46:13
问题 I have just updated my android SDK tools to the newly released version (tools version 22, platform tools version 17) java.lang.NoClassDefFoundError The .classpath file was modified. The update in added a line : <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/> Before the SDK tools update, all my projects worked well !! I corrected my problem in this way : In the project properties (eclipse) -> java build path -> order and export make sure that all