Skip to content

Instantly share code, notes, and snippets.

@viceversus
Created September 16, 2016 20:57
Show Gist options
  • Save viceversus/53ea51eaf7dfb4e72cd9f859a2c174ac to your computer and use it in GitHub Desktop.
Save viceversus/53ea51eaf7dfb4e72cd9f859a2c174ac to your computer and use it in GitHub Desktop.
Build Variants
android {
buildTypes {
debug {
buildConfigField('String', 'BUILD_ENV', '"development"')
}
release {
buildConfigField('String', 'BUILD_ENV', '"production"')
}
uiTest.initWith(buildTypes.debug)
uiTest {
buildConfigField('String', 'BUILD_ENV', '"test"')
}
acceptance.initWith(buildTypes.debug)
acceptance {
buildConfigField('String', 'BUILD_ENV', '"acceptance"')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment