Skip to content

Instantly share code, notes, and snippets.

@LethalMaus
Last active August 29, 2023 19:14
Show Gist options
  • Select an option

  • Save LethalMaus/a7f16af5e80f1d3fff0ba40dbd390ad0 to your computer and use it in GitHub Desktop.

Select an option

Save LethalMaus/a7f16af5e80f1d3fff0ba40dbd390ad0 to your computer and use it in GitHub Desktop.
BuildFlavors5
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