Created
November 13, 2020 12:15
-
-
Save NaCI/71b699f71d09946561827ab7850aa10d to your computer and use it in GitHub Desktop.
build.gradle flavor implementation
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
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