A build server, such as TeamCity or Jenkins, can be used to automate these processes. We will use TeamCity in our examples and you can download it for free at https://www.jetbrains.com/teamcity/download/. If you prefer Jenkins, you can get it at https://jenkins.io.
Download, install, and configure TeamCity on a server or, if just for testing purposes, on your development machine. After installing TeamCity, you can start the build server. On OS X, open a Terminal window, locate the bin folder of the teamcity folder (for example, /Users/mike/Dev/teamcity/bin), and type the following command:
m010:bin mike$ sh runall.sh start
Start a browser and point it to http://localhost:8111. Wait until the setup of TeamCity has completed and then create a new project, shown as follows:

Now that we know how to use Gradle to build different variants, the picture...