AaptOptions

DSL object for configuring aapt options.

Properties

PropertyDescription
additionalParameters

The list of additional parameters to pass to appt.

cruncherEnabled

Returns true if the PNGs should be crunched, false otherwise.

failOnMissingConfigEntry

Forces aapt to return an error if it fails to find an entry for a configuration.

ignoreAssets

Pattern describing assets to be ignore.

ignoreAssetsPattern

Pattern describing assets to be ignore.

noCompress

Extensions of files that will not be stored compressed in the APK.

Methods

MethodDescription
additionalParameters(param)

Adds additional parameters to be passed to aapt.

additionalParameters(params)

Adds additional parameters to be passed to aapt.

noCompress(noCompress)

Sets extensions of files that will not be stored compressed in the APK.

noCompress(noCompress)

Sets extensions of files that will not be stored compressed in the APK.

Script blocks

No script blocks

Property details

List<String> additionalParameters

The list of additional parameters to pass to appt.

boolean cruncherEnabled

Returns true if the PNGs should be crunched, false otherwise.

boolean failOnMissingConfigEntry

Forces aapt to return an error if it fails to find an entry for a configuration.

See aapt --help

String ignoreAssets

Pattern describing assets to be ignore.

See aapt --help

String ignoreAssetsPattern

Pattern describing assets to be ignore.

See aapt --help

Collection<String> noCompress

Extensions of files that will not be stored compressed in the APK.

Equivalent of the -0 flag. See aapt --help

Method details

void additionalParameters(String param)

Adds additional parameters to be passed to aapt.

void additionalParameters(String... params)

Adds additional parameters to be passed to aapt.

void noCompress(String noCompress)

Sets extensions of files that will not be stored compressed in the APK.

Equivalent of the -0 flag. See aapt --help

void noCompress(String... noCompress)

Sets extensions of files that will not be stored compressed in the APK.

Equivalent of the -0 flag. See aapt --help