class AaptOptions extends Object
DSL object for configuring aapt options.
Type | Name and description |
---|---|
void |
failOnMissingConfigEntry(boolean value) |
boolean |
getFailOnMissingConfigEntry() Forces aapt to return an error if it fails to find an entry for a configuration. |
String |
getIgnoreAssets() Pattern describing assets to be ignore. |
Collection<String> |
getNoCompress() Extensions of files that will not be stored compressed in the APK. |
boolean |
getUseNewCruncher() Whether to use the new cruncher. |
void |
noCompress(String noCompress) |
void |
noCompress(String... noCompress) |
void |
setFailOnMissingConfigEntry(boolean value) |
void |
setIgnoreAssetsPattern(String ignoreAssetsPattern) |
void |
setNoCompress(String noCompress) |
void |
setNoCompress(String... noCompress) |
void |
setUseNewCruncher(boolean value) |
void |
useNewCruncher(boolean value) |
Forces aapt to return an error if it fails to find an entry for a configuration.
Extensions of files that will not be stored compressed in the APK.
Whether to use the new cruncher.
TODO: Document.