Last active
December 17, 2019 13:57
-
-
Save nicowernli/bdc4776d6f5bc321e61f720bbb527f93 to your computer and use it in GitHub Desktop.
App Gradle android flavors
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 'my-app' | |
productFlavors { | |
development { | |
dimension 'my-app' | |
applicationId 'com.my-app.development' | |
} | |
integration { | |
dimension 'my-app' | |
applicationId 'com.my-app.integration' | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment