Refers to the act of finalizing a software building process for distribution to end-users. Do not use this tag if your question is about indicating that a chunk of memory can be reclaimed. Instead, use [memory-management].
Questions tagged [release]
3345 questions
121
votes
4 answers
How to add debug symbols to build.gradle
I have created android build of my Flutter application.
Then I created an internal testing release. It is showing a warning
This App Bundle contains native code, and you've not uploaded debug
symbols. We recommend you upload a symbol file to make…

Janaka
- 2,505
- 4
- 33
- 57
120
votes
5 answers
Maven Snapshot Repository vs Release Repository
What is the difference between a Snapshot Repository and Release Repository?
This is with reference to setting up Repositories (like Artifactory, Nexus etc)

Joseph
- 2,155
- 6
- 20
- 32
118
votes
2 answers
How to identify if the DLL is Debug or Release build (in .NET)
Possible Duplicate:
How to tell if a .NET application was compiled in DEBUG or RELEASE mode?
I'm sure this has been asked before, but google and SO search failed me.
How can I identify if a DLL is a release build or debug build?

dr. evil
- 26,944
- 33
- 131
- 201
116
votes
5 answers
Why can't a Flutter application connect to the Internet when installing "app-release.apk"? But it works normally in debug mode
In debug mode, everything looks good. I get answers and data lists from my API. But after creating app-release.apk and installing it on my phone, there isn't an Internet connection any more.
Here is my…

bimasakti
- 1,369
- 2
- 6
- 6
104
votes
7 answers
How do I create a release build in Xcode?
Why is it that when I build an application, Xcode creates a debug build? I want to create a release build. How can I do this?

cyclingIsBetter
- 17,447
- 50
- 156
- 241
104
votes
4 answers
Best practices with Nuget: Debug or Release?
Currently, I package the release builds with Nuget for the official builds to nuget.org, but I package the debug builds with Nuget for the symbol source pushes to symbolsource.org.
EDIT: (Jon Skeet, with some bias from Noda Time development)
NuGet…

gzak
- 3,908
- 6
- 33
- 56
96
votes
27 answers
Error: You are debugging a Release build of X.dll
Background
I have an ASP.NET MVC application project, along with various other projects within a Visual Studio solution. The different projects use various versions of the NPoco library as follows:
The MVC project includes a version of NPoco…

Sam
- 40,644
- 36
- 176
- 219
92
votes
6 answers
How to set up gradle and android studio to do release build?
I want to build android app and start signing it.
For that I need to have Release version of apk. Google documentation suggests only Eclipse and ant ways to have release builds:…

IBr
- 1,359
- 1
- 11
- 16
91
votes
2 answers
How to build a release version binary in Go?
In C, we can build a debug version or a release version of the binary files (the object files and the executable). How can we do this in Go?

catric mia
- 1,137
- 2
- 9
- 8
89
votes
11 answers
Cannot remove "Internal test track" build from Google Play Console
I've been developing my first app for work and am having trouble removing an earlier version from the Google Play Console.
My first release was version 2, which I released on the Internal Test track, as much as an experiment to understand the…

Mike
- 2,120
- 1
- 23
- 40
84
votes
3 answers
Running a release build with Xcode 4
I see how Xcode 4 splits the info on your targets nicely in one view, but how does one build and run these different builds? All I see are the options to build and to run, and these options to build for running, testing, and profiling. It's not…

Joey
- 7,537
- 12
- 52
- 104
84
votes
9 answers
mvn release:prepare not committing changes to pom.xml
I'm trying to release a Jenkins plugin (stashNotifier) with Maven and face a problem with the release plugin.
mvn clean release:prepare
runs to completion without errors but fails to commit the changed pom.xml in my local git repository. Even…

BumbleGee
- 2,031
- 3
- 18
- 18
73
votes
1 answer
What is autoreleasepool?
Possible Duplicate:
Why use Autorelease pool?
All Objective-C starting page opens with a default @autoreleasepool{...} statement under the main function declaration. But what is this statement actually doing? The new Objective-C releases…

moray95
- 937
- 2
- 9
- 12
68
votes
2 answers
Programmatically detecting Release/Debug mode (.NET)
Possible Duplicate:
How to find out if a .NET assembly was compiled with the TRACE or DEBUG flag
Possible Duplicate:
How to idenfiy if the DLL is Debug or Release build (in .NET)
What's the easiest way to programmatically check if the current…

ripper234
- 222,824
- 274
- 634
- 905
65
votes
6 answers
How do I manage building a Lite vs Paid version of an iPhone app?
I'm starting to get to the point where I want to consider building a
lite version of my iPhone app. I've found a few things on the web that talk
about the process a bit,…

Brad Parks
- 66,836
- 64
- 257
- 336