Skip to content

Instantly share code, notes, and snippets.

@smhdk
Created March 19, 2018 10:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smhdk/3fa3cad7e7f6803b74d979f75b7c1f5f to your computer and use it in GitHub Desktop.
Save smhdk/3fa3cad7e7f6803b74d979f75b7c1f5f to your computer and use it in GitHub Desktop.
Modul build.gradle Product Flavors example
android {
...
defaultConfig {...}
buildTypes {...}
productFlavors {
demo {
applicationIdSuffix ".demo"
versionNameSuffix "-demo"
}
full {
applicationIdSuffix ".full"
versionNameSuffix "-full"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment