Skip to content

Instantly share code, notes, and snippets.

@koral--
Last active October 15, 2017 15:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koral--/483dc9e0f1eb696acd02e419ac6e3381 to your computer and use it in GitHub Desktop.
Save koral--/483dc9e0f1eb696acd02e419ac6e3381 to your computer and use it in GitHub Desktop.
Resources filtering
android {
defaultConfig {
//other locales will be filtered out
resConfigs 'en', 'hu'
}
buildTypes {
debug {
pseudoLocalesEnabled true
}
}
aaptOptions {
//this will also filter out unlisted locales
additionalParameters '-c', 'en,hu'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment