I\'m creating different flavors using gradle for 2 small android apps ,i wanna just know if i can edit app name on the xml file in the build.gradle , for my different flav
This answer is based on Tom's, it works the best and you can work with gradle.properties to allow further animation in build process.
gradle.properties
In build.gradle:
build.gradle
debug { resValue 'string', 'app_name', APP_NAME }
In gradle.properties:
APP_NAME="Template 1"