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
30
votes
2 answers
What is difference between release notes and changelog?
Software packages are often shipped with changelog and/or release notes. What's the difference between them? Should they be both included with release of a new version?

rubick
- 508
- 1
- 5
- 13
30
votes
8 answers
Gradle Build Failure
My project compiles and executes well on debug mode but when i try to generate a signed apk, errors arise. This appears on the message log:
:app:proguardRelease
Warning:android.support.v4.app.DialogFragment: can't find referenced class…

Alex Kombo
- 3,256
- 8
- 34
- 67
29
votes
7 answers
How to put assert into release builds in C/C++
I need to only run ship build and I need to assert on certain condition in release build to see if the problem is fixed. How do I do it?
pra che
29
votes
6 answers
Web.config Build vs Release transform not working
I have an ASP.NET Web Application project that connects to a remote database via the Entity Framework. During debugging (eg running the project on my local computer), the IP address to the database is different than during release (eg after…

Nick Thissen
- 1,802
- 4
- 27
- 38
29
votes
4 answers
Objective-C Difference between setting nil and releasing
I've learned that in dealloc you do [object release]; but in viewDidUnload (in a UIViewController subclass) you do self.object = nil. What is really the difference because self.object = nil (we're assuming object is a (nonatomic, retain) property)…

mk12
- 25,873
- 32
- 98
- 137
28
votes
8 answers
android studio: release apk is not signed
* I have rephrased the post since originally posted *
When I try to run a just-built release apk, I get an error "the apk for your currently selected variant ... is not signed." This is in the Edit Configuration popup. Here are my steps:
In the…

Peri Hartman
- 19,314
- 18
- 55
- 101
28
votes
6 answers
Django: auto minifying css/js files before release
I have following case: I want to use uncompressed js/css files during development (to debug js for example) but on production I want to switch automatically to minified versions of that files.
some simple solution is to put in your template: