We have three environments for our app - DEV, QA and PROD.
Now we have created three AndroidManifest files for those three envs(like AndroidManifest_QA.xml), and we have to change the file name EVERY TIME when we want to release a new version, which is not unfailing.
So, I am wondering if there is an easier way to handle this situation?
Thanks in advance.
I would go for Gradle Flavours:
or you can make it more separated, by using build variants. I think this is what you are really looking for in your case:
a very good tutorial: http://www.techotopia.com/index.php/An_Android_Studio_Gradle_Build_Variants_Example
article: http://developer.android.com/tools/building/configuring-gradle.html
Let's consider the following example from the techotopia.com
if you need to separate the falvours on code level, than please see Xavier Ducrohet stackoverflow link below:
Using Build Flavors - Structuring source folders and build.gradle correctly