Last active
August 29, 2023 19:13
-
-
Save LethalMaus/6a953459fd68761f23fcc20cf34daea9 to your computer and use it in GitHub Desktop.
BuildFlavors2
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 { | |
| ... | |
| productFlavors { | |
| free { | |
| applicationIdSuffix ".free" | |
| resValue "string", "app_name", "My Free App" | |
| } | |
| paid { | |
| resValue "string", "app_name", "My Paid App" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment