Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save LethalMaus/96b94d65518ca19be06d257aff9abc73 to your computer and use it in GitHub Desktop.
BuildFlavors4
android {
...
productFlavors {
dev {
buildConfigField "String", "BASE_URL", "\"https://api.dev.example.com\""
buildConfigField "boolean", "DEBUG", "true"
}
integration {
buildConfigField "String", "BASE_URL", "\"https://api.integration.example.com\""
buildConfigField "boolean", "DEBUG", "true"
}
production {
buildConfigField "String", "BASE_URL", "\"https://api.example.com\""
buildConfigField "boolean", "DEBUG", "false"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment