crash

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

江枫思渺然 提交于 2019-12-27 21:43:31
问题 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

Xcode error - Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: [duplicate]

淺唱寂寞╮ 提交于 2019-12-25 19:46:06
问题 This question already has answers here : Xcode - How to fix 'NSUnknownKeyException', reason: … this class is not key value coding-compliant for the key X" error? (68 answers) Closed 4 years ago . i dont know where can be problem:/ 2014-04-11 22:36:33.815 bus[1432:60b] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<TableViewCell 0x8e63160> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key DescriptionLablel.' *** First throw

Calling free() causes my program to crash

主宰稳场 提交于 2019-12-25 18:45:35
问题 I'm having a really weird issue where trying to call free on an allocated piece of memory causes my program to crash. Here's the relevant code: int i, count; char *specifier; char aisle[1]; count = 0; /*Find name of the new item and assign to the name field of new_node...*/ for (i = 0; input[i] != ','; i++){ count++; } specifier = (char*)malloc((count+1)*sizeof(char)); if (specifier == NULL){ printf("Out of memory. Shutting down.\n"); exit(EXIT_FAILURE); } for (i = 0; input[i] != ','; i++){

glGenBuffers crashing with Segmentation fault [closed]

a 夏天 提交于 2019-12-25 18:41:39
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I can't figure out why it keeps crashing on glGenBuffers GDB backtrace gives me this #0 0x00000000 in ?? () #1 0x0808701d in setupBuffers () at main_scene.cc:250 #2 0x08088cf8 in main (argc=1, argv=0xbffff3c4) at main_scene.cc:694 Here is my main() int main(int argc, char **argv) { glutInit(&argc, argv);

AudioManger doesn't Work Application Crashes

帅比萌擦擦* 提交于 2019-12-25 18:38:14
问题 I'm working on an application .. but Audiomanager is not working i can't see any error my application got crash on phone I'm using AudioManager in BroadCastReciver Class when sms recive and text of sms is same of the particular text i've set the volume should be change silent to Normal mode. if(message.equals(pwd)) { AudioManager au; au = (AudioManager)getSystemService(Context.AUDIO_SERVICE); au.setRingerMode(AudioManager.RINGER_MODE_NORMAL); // Show Alert int duration = Toast.LENGTH_LONG;

Serious instability with pygtk 2.22 and python 2.6

我们两清 提交于 2019-12-25 16:54:36
问题 Has anybody come across this? I've taken the GTK HelloWorld sample. It runs fine. However, if i import win32ui , then it does not shutdown properly (as explained in this question ). There are other problems. In the process of narrowing down my application to see what caused it to not shutdown, I came upon a point where I was deconstructing a logger class I had written that I had no problems with. In the constructor I had the line: self.logger = logger I had commented out the rest of the class

Calling coordinates from MySQL database with this code causes simulator to display a SIGABRT error. What's wrong?

杀马特。学长 韩版系。学妹 提交于 2019-12-25 07:59:12
问题 When I use this code to try and call Lat & Long coordinates from a MySQL database (and display them on a MapView), the app runs fine. Everything appears to work, but for some reason, xcode pauses the simulator before the map loads, and throws me a SIGABRT. Any idea why? See below: MapViewController.h #import <UIKit/UIKit.h> #import <MapKit/MapKit.h> @interface MapViewController : UIViewController <MKMapViewDelegate> @property (nonatomic, strong) IBOutlet MKMapView *mapView; @property

App rejected due to crash

前提是你 提交于 2019-12-25 07:54:29
问题 Hi my app rejected due to crash, but i can't reproduce the crash from my side. Apples send following crash log: Thread 0 name: Dispatch queue: com.apple.main-thread Thread 0: 0 libsystem_kernel.dylib 0x39146a50 mach_msg_trap + 20 1 libsystem_kernel.dylib 0x39146849 mach_msg + 37 2 CoreFoundation 0x2df99625 __CFRunLoopServiceMachPort + 153 3 CoreFoundation 0x2df97d8b __CFRunLoopRun + 859 4 CoreFoundation 0x2df02765 CFRunLoopRunSpecific + 521 5 CoreFoundation 0x2df02547 CFRunLoopRunInMode + 103

My Android Calculator app with swipe view with tabs is crashing

限于喜欢 提交于 2019-12-25 07:18:06
问题 I have created two simple calculator apps, they are working well. I wanted to put that code in a new app (swipe view with 3 tabs) each app code in each tab. The app installing,opening & displaying the way i wanted in three tabs. I have two buttons in each tab. CLEAR & CALCULATE. when i click those buttons (which are connected with ONCLICK event to java code for calculation) the app is crashing. The same code is working well in two different apps i created earlier & Android studio also showing

My Android Calculator app with swipe view with tabs is crashing

三世轮回 提交于 2019-12-25 07:16:24
问题 I have created two simple calculator apps, they are working well. I wanted to put that code in a new app (swipe view with 3 tabs) each app code in each tab. The app installing,opening & displaying the way i wanted in three tabs. I have two buttons in each tab. CLEAR & CALCULATE. when i click those buttons (which are connected with ONCLICK event to java code for calculation) the app is crashing. The same code is working well in two different apps i created earlier & Android studio also showing