Questions tagged [release-builds]

61 questions
13
votes
1 answer

C# is not working in release build

Trying to debug a problem on a C# application, I stumbled upond this problem which is the cause of the app malfunctioning. Basically I have this code: double scale = 1; double startScale = 1; ... scale = (e.Scale - 1) * startScale; if(scale <= 1) …
zeb
  • 945
  • 6
  • 26
8
votes
8 answers

SharedPreferences not instantiating in release build

In my flutter application I have implemented a an onboarding view. As it should load only once, I have used shared preferences to store an integer to indicate that onboarding is already shown. When I run the application in debug mode everything…
7
votes
2 answers

Selecting the certain resource files into WAR from the default src/main/resources location with Maven

I am trying to control which files make into the WAR package that is created by mvn package goal. Specifically, I want to exclude some files from the default src/main/resources folder for each package (I am trying to do builds/package for different…
Tuukka Mustonen
  • 4,366
  • 9
  • 45
  • 75
6
votes
3 answers

Exporting release build - Flex through Intellij Idea

How do I generate release build of my Flex Application through IntelliJ Idea, like I do in Flex Builder?
simplfuzz
  • 11,375
  • 24
  • 81
  • 131
6
votes
1 answer

Is it possible to remove symbols from a shared library built with Android NDK?

I'm building a shared library for use in a Java app using the Android NDK. Using readelf to inspect the lib/armeabi-v7a/libXXXlib.so file generated by a release build, it appears to contain all the symbols (function, variable names) of my native…
4
votes
6 answers

Partial builds versus full builds in Visual C++

For most of my development work with Visual C++, I am using partial builds, e.g. press F7 and only changed C++ files and their dependencies get rebuilt, followed by an incremental link. Before passing a version onto testing, I take the precaution…
SmacL
  • 21,621
  • 10
  • 89
  • 143
4
votes
2 answers

Releasing an ios mobile app built in flash builder 4.5 without apple certificate

I have a jailbroken iphone 4, and I want to create a release, an ipa file from a flex project I've written in flash builder 4.5.1, For testing purposes (on my device). Can it be done without buying the apple's developers certificate? Thank you! Dan…
RCB
  • 2,155
  • 2
  • 20
  • 49
4
votes
3 answers

iOS: How to release an app for a limited number of users?

I'm quite new to iOS distribution so I'm here to ask for the right direction, in particular because my objective is not a common publication. I'd like to distribute to a few hundreds of selected users for at least half year. What provisioning…
user3290180
  • 3,590
  • 9
  • 38
  • 69
4
votes
2 answers

ARC weak ivar released before being returned - when building for release, not debug

I have a class that creates an object lazily and stores it as a weak property. Other classes may request this object, but must obviously keep a strong reference to it to keep the object from being deallocated: // .h @interface…
Stuart
  • 34,797
  • 19
  • 93
  • 135
3
votes
1 answer

How to solve `Warning: io.grpc.netty.shaded.io.netty.handler.ssl.ConscryptAlpnSslEngine$BufferAdapter:`?

i am using google translate api's, when i get release build throw the bellow warning's. I search many examples but still i get this warning. Please any one give me an solution to solve the error. Here i mention my gradle file and warning output. My…
Mathan Chinna
  • 373
  • 3
  • 19
3
votes
3 answers

app:mergeReleaseResources exception when making release build

I am able to create debug build but release build fails with app:mergeReleaseResources and Error: java.util.concurrent.ExecutionException: exception. I have tried setting progaurd off, remove any corrupted png file but still same issue is coming.…
3
votes
2 answers

Managing/Using libraries with Debug builds vs Release builds

I'm curious about everyones practices when it comes to using or distributing libraries for an application that you write. First of all, when developing your application do you link the debug or release version of the libraries? (For when you run…
Dewm Solo
  • 601
  • 2
  • 7
  • 12
3
votes
0 answers

Android Studio only builds apk for x86_64 native platforms - don't know why?

I'm using Android Studio 2.2.3 trying to make a release build with following splits splits { abi { enable true reset() include 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a' //select ABIs to…
3
votes
2 answers

ARC seems to overrelease objects referenced in blocks that are created and dispatched in a loop

I am trying to put some complex computations on a background thread using dispatch_async but the objects I am using in the blocks seem to be overreleased. I am using ARC so I assumed that I do not have to care much about retain and release, but…
2
votes
5 answers

How can I link against the debug/release libraries automatically in VC++ 6.0?

I am trying to maintain a program written 5 years ago in VC++ 6.0. It uses our 'common' libraries. The trouble I have is that it either links against the debug version of these libraries or the Release version, depending on whether I have the…
user41013
  • 1,189
  • 2
  • 14
  • 25
1
2 3 4 5