android tutorial - Define signing configuration in a separate gradle file in android - android studio - android app developement
Define signing configuration in a separate gradle file in android
The simplest and cleanest way to add an external configuration is through a separate Gradle file build.gradle
keystore.gradle
The keystore.gradle file can exist anywhere in your file system, you can specify its location inside the
at the top of your gradle file or at the end of your main project build.gradle file. Typically its a good idea to ignore this file from version control system such as git if its located inside your repo. It is also a good idea to provide a sample
which developers entering the project would rename and populate on their development machine. This file would always be contained inside the repo at the correct location.