Questions tagged [debug-build]

32 questions
1
vote
3 answers

Google Maps crash during APK build execution

I'm using Google Map in my app. I've tried to use MapView as well as SupportMapFragment inside a Fragment that contains the Map. The issue that comes up causes Google Maps to crash after 'Build APK' process (in all devices that I've tested) during…
1
vote
3 answers

Can I decorate a method in C# such that it is compiled only in debug versions?

I'm aware that you can use #if DEBUG and the likes in C#, but is it possible to create a method, or class, that is ignored completely, including all usages that are not wrapped inside an #if DEBUG block? Something like: [DebugOnlyAttribute] public…
Abel
  • 56,041
  • 24
  • 146
  • 247
1
vote
1 answer

gstreamer debug builds

I m writing a multimedia application .For Debugging purpose I need gstreamer debug builds for windows. Ossbuild only provides the release dll. Does anyone know where I can get debug dlls for gstreamer?
Vihaan Verma
  • 12,815
  • 19
  • 97
  • 126
0
votes
1 answer

android SHA-256 certificate from debug apk file

I am working on declaring app site association in assetLinks.json file and as a part I need to declare the SHA-256 certificate fingerprint. have a debug apk and is there any way to get its SHA-256 certificate fingerprint?
Sonia John Kavery
  • 2,099
  • 2
  • 20
  • 36
0
votes
1 answer

Does enabling coredump make my software debug build?

Query This question is mainly oriented to Linux distributions. Usually there are Debug and Release builds. Will my Release build become debug build if I enable coredumps. Reason for the query. We are having a very weird hard to reproducible issue…
ram
  • 23
  • 5
0
votes
1 answer

Meson compiling subprojects in debug mode

I have a parent project and a subproject using meson. Quite sadly the subproject only builds in release mode. However, even if I set the parent project to debug using --reconfigure and check with configure that the build type is debug, it seems the…
Makogan
  • 8,208
  • 7
  • 44
  • 112
0
votes
0 answers

Where I can find Primefaces 3.4.1 bundle package (dev package)?

The official link in the official Primefaces download page is broken, and in Maven repository I can find only the bin, not the bundle. The bundle package is a bin package with the source code and the javadocs. Someone can point me to a safe link, if…
Marco Sulla
  • 15,299
  • 14
  • 65
  • 100
0
votes
1 answer

Facing weird issue with debug and release builds of the same app

I am facing a weird issue with my Android apk build. I have an app which has livestreaming feature. The livestreaming feature is by a third party sdk. The issue is that, it works silky smooth in the debug build but the moment I try signed release…
Varun A M
  • 1,103
  • 2
  • 14
  • 29
0
votes
3 answers

debug build cannot access out.jar during build because it is being use by another process

now that I'm working from home I'm trying to work for my home desktop (windows) when I try and run a debug build. I get the error. Execution failed for task ':app:packageDebug'. > Exception modifying resource jar file: :…
0
votes
2 answers

Why does debug build result in one more variable?

This is the code: Employee e = new Employee() { Name = "Jeff", Age = 45 }; And this is how it is compiled when building a debug assembly: Employee employee = new Employee(); employee.Name = "Jeff"; employee.Age = 45; Employee employee2 =…
0
votes
3 answers

Weird console messages when deploying app to iPad

yesterday my app was deploying (debug build) to the iPad fine. but today I upgraded to iOS 4.2.1 (ie the current one), and now it spits a lot of nonsense out on the console, and hangs for an indeterminate time ( sometimes a couple of minutes or…
P i
  • 29,020
  • 36
  • 159
  • 267
0
votes
1 answer

Android debug build failing with "Stackoverflow Error" post gradle upgrade to 2.3.0

I had recently upgraded to gradle plugin 2.3.0 and the gradle version to 4.3.1. Post that upgrade the debug build is failing with the following stack trace. Have no clue what is going wrong and where. For sure there is something related to…
0
votes
1 answer

How to leverage power of TextWriterFormat for printfn style in combination with ConditionalAttribute which requires unit result

I set myself to creating a trace function that behaves like sprintf or printfn, but is disabled (JIT removes it on call site) for Release builds by using the ConditionalAttribute. Result so far: I don't think it is possible. The problem centers…
Abel
  • 56,041
  • 24
  • 146
  • 247
0
votes
1 answer

Why RUMTIME_CLASS passed compile without "DECLARE_DYNAMIC" in VS2008 Debug version?

Answered at the bottom. Thanks! The compiler caught error C2039 and C2065 correctly in Release version; I'm just curious why the same code CAN pass compile in Debug version? Is it a known Microsoft bug? I know DECLARE_DYNAMIC/IMPLEMENT_DYNAMIC will…
milesma
  • 1,561
  • 1
  • 15
  • 37
0
votes
1 answer

Cmake flags for debugging don't seem to be useful in valgrind?

Ok, so I have this Qt application I'm attempting to debug; upon running valgrind on it and redirecting output to a file, I see many some 'definitely lost' blocks that look something like this, which make me sad: ==24357== 24 bytes in 1 blocks are…
Daniel
  • 13
  • 3