Questions tagged [release-builds]
77 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
- 1,105
- 2
- 9
- 32
12
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…

Azeem Muzammil
- 262
- 1
- 3
- 14
10
votes
4 answers
Flutter android release stuck on splash screen
Flutter android release build is stuck on splash screen.
I have tried by cleaning project flutter clean. But still it got stuck on splash screen. I have also used WidgetsFlutterBinding.ensureInitialized(); before executing the runApp(). Still it…

Anirban Das
- 1,035
- 1
- 18
- 22
8
votes
3 answers
flutter web alternates/reduce size of canvaskit.wasm
My flutter web initial page load is slow(10-15 secs),
Found that large amount of time is spent in downloading "https://unpkg.com/canvaskit-wasm@0.24.0/bin/canvaskit.wasm" which is around 2.5 MB as per browser logs.
Is there a way to reduce this…

Gururaja Hegde
- 323
- 3
- 9
7
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
- 4,260
- 9
- 42
- 77
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,722
- 9
- 49
- 79
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
- 12,479
- 24
- 84
- 137
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…

Rich
- 7,348
- 4
- 34
- 54
5
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
- 22,555
- 12
- 95
- 149
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,253
- 2
- 25
- 49
4
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
- 671
- 2
- 7
- 13
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
- 36,683
- 19
- 101
- 139
3
votes
2 answers
minifyEnabled true and shrinkResources true in release build retrofit api's are not working
This is my proguard file:
-keepattributes *Annotation*
-keepattributes SourceFile,LineNumberTable
-keep public class * extends java.lang.Exception
-printmapping mapping.txt
-keepattributes Signature, InnerClasses, EnclosingMethod
-keepattributes…

Deepak Rajput
- 731
- 6
- 20
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
- 587
- 6
- 22
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.…

jatin rana
- 825
- 1
- 9
- 21