Skip to content

Instantly share code, notes, and snippets.

@NaCI
Created November 13, 2020 12:15
Show Gist options
  • Save NaCI/71b699f71d09946561827ab7850aa10d to your computer and use it in GitHub Desktop.
Save NaCI/71b699f71d09946561827ab7850aa10d to your computer and use it in GitHub Desktop.
build.gradle flavor implementation
flavorDimensions …, "services"
productFlavors {
...
gms {
dimension "services"
buildConfigField "String", "SERVICE_USED", '"gms"'
}
hms {
dimension "services"
buildConfigField "String", "SERVICE_USED", '"hms"'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment