crash

Facing abrupt crashes from visual studio 2015 and 2013

狂风中的少年 提交于 2019-12-20 02:32:08
问题 I am facing this issue for last few days. My Visual studio 2015 crashes abruptly. On checking the application event log, i found that for each crash, following log is entered in it. Faulting application name: devenv.exe, version: 14.0.24720.0, time stamp: 0x564ea97e Faulting module name: MSWB7.dll, version: 10.0.14291.1001, time stamp: 0x56e7c254 Exception code: 0xc0000005 Fault offset: 0x0000ed3a Faulting process id: 0x1224 Faulting application start time: 0x01d18d0ac67af6bd Faulting

Facing abrupt crashes from visual studio 2015 and 2013

感情迁移 提交于 2019-12-20 02:32:08
问题 I am facing this issue for last few days. My Visual studio 2015 crashes abruptly. On checking the application event log, i found that for each crash, following log is entered in it. Faulting application name: devenv.exe, version: 14.0.24720.0, time stamp: 0x564ea97e Faulting module name: MSWB7.dll, version: 10.0.14291.1001, time stamp: 0x56e7c254 Exception code: 0xc0000005 Fault offset: 0x0000ed3a Faulting process id: 0x1224 Faulting application start time: 0x01d18d0ac67af6bd Faulting

NoClassDefFoundError Crash on Minimizing Youtube Player on Android 4.0, 4.2, 4.4

独自空忆成欢 提交于 2019-12-20 02:09:18
问题 Problem : Youtube Player crashes on minimizing youtube player activity/Fragment in the app. Cause : Youtube Player Update Code public class YouTubePlayerActivity extends YouTubeBaseActivity implements YouTubePlayer.OnInitializedListener { private static final int RECOVERY_DIALOG_REQUEST = 1; private final String TAG = YouTubePlayerActivity.class.getSimpleName(); private YouTubePlayerView youTubeView; private String videoId; private YouTubePlayer youtubePlayer; @Override protected void

App crashing immediately on start up, on device only

霸气de小男生 提交于 2019-12-20 00:50:08
问题 I'm trying to figure out why an app I'm developing has started crashing immediately when running it on my device (an iPhone 4 running iOS 6.1). I have been working on this app for about 8 weeks and this problem has arisen seemingly out of the blue. The app runs fine when I run it on the simulator. When I try to run it on my device it crashes, and breaks at: int main(int argc, char *argv[]) { @autoreleasepool { return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));

android: admob InterstitialAd crash at loadAd

核能气质少年 提交于 2019-12-19 12:11:24
问题 I'm using InterstitialAd by Admob. My app crashes at "loadAd" only in the first time it's called, and it's not reproducible (it happens once in 100-200 runs less or more). the ad unit id is correct for sure. So if loadAd doesn't fail in the first time it's called, it won't fail at all at this run. class member: InterstitialAd mInterstitialAd; onCreate: mInterstitialAd = new InterstitialAd(this); mInterstitialAd.setAdUnitId(getResources().getString(R.string.interstitial_ad_unit_id));

Fix Core Data Fail

亡梦爱人 提交于 2019-12-19 11:54:45
问题 I have an app in the app store that uses Core Data and I have to release an update by tomorrow. However, I am experiencing some problems with Core Data.I by mistake made changes to my model in Core Data and now my app is crashing. I tried migrating the data but the app still crashes when I updated it on my iPhone. Is there anyway to fix it? Thank you so much for your help! EDIT: I am trying to add the .mom file to the app but I can not get it into the Bundle: EDIT 2: Do I delete the entirely

Exit on application crash

六月ゝ 毕业季﹏ 提交于 2019-12-19 11:07:03
问题 when ever any application crash come I want to exit from the app ? How to achieve same. does Android manifest have any provision for same. 回答1: I would recommend to register a global UncaughtExceptionHandler. This catches all the exceptions that are not handled. Then you can do there what you want. For example close the app, inform the user and send a log to yourself. 回答2: You could also use ACRA or a service like BugSense that solve this problem. 来源: https://stackoverflow.com/questions

Exit on application crash

拜拜、爱过 提交于 2019-12-19 11:05:31
问题 when ever any application crash come I want to exit from the app ? How to achieve same. does Android manifest have any provision for same. 回答1: I would recommend to register a global UncaughtExceptionHandler. This catches all the exceptions that are not handled. Then you can do there what you want. For example close the app, inform the user and send a log to yourself. 回答2: You could also use ACRA or a service like BugSense that solve this problem. 来源: https://stackoverflow.com/questions

android : camera.getParameters() crashes app

人盡茶涼 提交于 2019-12-19 10:47:21
问题 i'm using this code to use the camera LED as flashlight but it crashes when the service starts. Using Log.w() statements i found it stops at param = camera.getParameters();. i have included the android.permission.CAMERA in my manifest. i don't understand what causes the crash. how can i fix this? public class Flashlight extends Service { private Camera camera; private Parameters param; private final IBinder mBinder = new LocalBinder(); public class LocalBinder extends Binder { Flashlight

Application crashing when talking to oracle unless executable path contains spaces

拟墨画扇 提交于 2019-12-19 10:42:25
问题 We have an x-files problem with our .NET application. Or, rather, hybrid Win32 and .NET application. When it attempts to communicate with Oracle, it just dies. Vanishes. Goes to the big black void in the sky. No event log message, no exception, no nothing. If we simply ask the application to talk to a MS SQL Server instead, which has the effect of replacing the usage of OracleConnection and related classes with SqlConnection and related classes, it works as expected. Today we had a