Last active
August 29, 2023 19:14
-
-
Save LethalMaus/a7f16af5e80f1d3fff0ba40dbd390ad0 to your computer and use it in GitHub Desktop.
BuildFlavors5
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
| if (BuildConfig.FLAVOR.equals("dev")) { | |
| // Code for the development environment | |
| } else if (BuildConfig.FLAVOR.equals("integration")) { | |
| // Code for the integration environment | |
| } else if (BuildConfig.FLAVOR.equals("production")) { | |
| // Code for the production environment | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment