Skip to content

Instantly share code, notes, and snippets.

@nicowernli
Last active December 17, 2019 13:57
Show Gist options
  • Save nicowernli/bdc4776d6f5bc321e61f720bbb527f93 to your computer and use it in GitHub Desktop.
Save nicowernli/bdc4776d6f5bc321e61f720bbb527f93 to your computer and use it in GitHub Desktop.
App Gradle android flavors
...
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