Last active
August 12, 2019 08:40
-
-
Save motorro/6a88a5c71af885bd9432ea1443ad9737 to your computer and use it in GitHub Desktop.
Application variants
This file contains 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 "backend" | |
productFlavors { | |
testserver { | |
dimension "backend" | |
applicationIdSuffix ".test" // Makes your app have a different package name | |
} | |
production { | |
dimension "backend" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment