This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
android { | |
..... | |
flavorDimensions "appType" //Can be anything, just identifier | |
productFlavors { | |
Client { | |
dimension "appType" | |
applicationIdSuffix ".client" //Will be added to package name of the app, making the app unique | |
//More can be added like |
OlderNewer