Skip to content

Instantly share code, notes, and snippets.

@arohim
Last active June 22, 2020 15:35
Show Gist options
  • Save arohim/d07858e306ec8e6c182dd1cfe3010daf to your computer and use it in GitHub Desktop.
Save arohim/d07858e306ec8e6c182dd1cfe3010daf to your computer and use it in GitHub Desktop.
common_properties.gradle
android.buildTypes {
mock {
buildConfigField "String", "BASE_API_URL", "\"https://c77b2784-b60b-491b-af7e-273c356ef4a2.mock.pstmn.io\""
}
debug {
buildConfigField "String", "BASE_API_URL", "\"https://api.github.com/\""
}
release {
buildConfigField "String", "BASE_API_URL", "\"https://api.github.com/\""
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment