Questions tagged [release-mode]

an ide or build setting requesting builds without debug objects

typical hallmarks of this mode: optimized compilation, different linking, omitted debugging artifacts

known environments where this concept applies: eclipse, visual studio, maven

177 questions
3
votes
0 answers

Flutter - push notifications appearing in iOS in debug mode but not in release mode

I am currently using the flutter_apns (https://github.com/mwaylabs/flutter-apns) package to show push alerts in iOS in my flutter app. Everything works great in debug mode, however when I test in release mode, the alerts do not appear. This is…
3
votes
3 answers

Visual C++ express 2008: Why does it places megs of null bytes at the end of the release executable?

Recently I have discovered that my release executable (made with msvc++ express 2008) becomes very large. As I examine the executable with a hex viewer I saw that only the first 300k bytes contains useful data the remaining bytes are only zeros - 6…
Calmarius
  • 18,570
  • 18
  • 110
  • 157
3
votes
1 answer

UWP unhandled exception only in Release mode

I've been struggling for a week with a bug in my published UWP app that only seems to manifest itself in release mode when deployed on phones (ARM target). It randombly crashes the app when navigating from one specific page to another. It only…
3
votes
1 answer

Compiler optimization breaks code

For the past couple of hours I've been trying to track down a bug in my program, which only occurs when running it in release mode. I've already resolved all level-4 compiler-warnings, and there are no uninitialized variables anywhere (Which would…
Silverlan
  • 2,783
  • 3
  • 31
  • 66
3
votes
1 answer

jQuery crash because of bundle minification in release mode

I have jquery bundle: bundles.Add(new ScriptBundle("~/bundle/jquery").Include( ScriptsPath("jquery-2.0.3.js"), ScriptsPath("jquery.validate.js"), ScriptsPath("jquery.validate.unobtrusive.js"), …
Dmytro
  • 16,668
  • 27
  • 80
  • 130
3
votes
7 answers

Visual C++ - Why bother with Debug Mode?

So I have just followed the advice in enabling debug symbols for Release mode and after enabling debug symbols, disabling optimization and finding that break-points do work if symbols are complied with a release mode, I find myself…
Extrakun
  • 19,057
  • 21
  • 82
  • 129
2
votes
2 answers

fixing libvlc release mode crash with VC2010

I am using libVLC in one of my apps which I am compiling with VC2010 (also tried VC2008), the debug mode of my app works great but as soon as I compile to release mode and try to call into libVLC I get a crash. I asked for help on the vlc forums…
mirswith
  • 1,285
  • 1
  • 10
  • 15
2
votes
2 answers

Disadvantages to release Flash application which was compiled in debug mode

I want to release my flash application not in release mode but in debug mode to see result of trace() after releasing the app. I don't care that debug mode makes processing speed little slow. Except for processing speed, are there disadvantages to…
js_
  • 4,671
  • 6
  • 44
  • 61
2
votes
2 answers

Android / Eclispe: how to run my app on device or emulator in release mode ? (if any...)

I am currently finishing the development of my Android app. I tested it extensively on both my Android phone and the emulator using my debug MD5 key and debugkeystore. I generated a release MD5 key and keystore. I can create an apk file using…
toto_tata
  • 14,526
  • 27
  • 108
  • 198
2
votes
1 answer

How to run some code based on release or debug build mode?

I have a variable(i.e bool releaseMode = false;) I want the value of the variable to be set based on whether we are in release mode(releaseMode = true;) else debug mode(releaseMode = false;)
2
votes
2 answers

Visual Studio 2008 Breakpoint will not be hit

I have a bug that only occurs in release mode, which is a problem because I am not able to regularly debug my code. The breakpoint says "The breakpoint will not currently be hit. No symbols have been loaded for this document." I have tried many of…
anthv123
  • 523
  • 1
  • 8
  • 20
2
votes
2 answers

Flutter Navigator.popUntil() with ModalRoute.withName() not working in profile and release mode

I have a function that navigates to a new page with route settings void pushWithSettings( {@required BuildContext context, @required Widget newPage}) { Navigator.push( context, MaterialPageRoute( settings: RouteSettings( …
faithomotoso
  • 385
  • 2
  • 10
2
votes
2 answers

How to rebuild Flutter widgets when device size changes, in release mode for Flutter View in Android app?

Update: I tried this with a regular 100% Flutter app and was not able to replicate it. In a Flutter View of an Android app, though, I logged the size and there's a log where it's 0x0. So it seems the below question is only applicable in this…
Mary
  • 18,347
  • 23
  • 59
  • 76
2
votes
0 answers

MessagingCenter stops working in UWP release mode

I am working on an issue with UWP application with Xamarin.Forms. I have noticed that when I set the build configuration to Release mode MessagingCenter class stop working without crashing but in Debug mode MessagingCenter works fine. I set my…
ssmsexe
  • 209
  • 2
  • 4
  • 10
2
votes
1 answer

UWP - Reflection_InsufficientMetadata_EdbNeeded in Release build

I have a barebones UWP solution that highlights my issue at hand. When I run the app in Debug mode, it runs fine; in Release mode, I receive the following error: Based on my search so far, it seems like it is due to the fact that my app uses…
jkh
  • 3,618
  • 8
  • 38
  • 66
1 2
3
11 12