public static enum DxStep.Option extends Enum<DxStep.Option>
dx
.Enum Constant and Description |
---|
FORCE_JUMBO
Force the dexer to emit jumbo string references
|
NO_DESUGAR
Disable java 8 desugaring when running D8 dexing tool.
|
NO_LOCALS
Run DX with the --no-locals flag.
|
NO_OPTIMIZE
Specify the
--no-optimize flag when running dx . |
RUN_IN_PROCESS
Execute DX in-process instead of fork/execing.
|
USE_CUSTOM_DX_IF_AVAILABLE
See if the
buck.dx property was specified, and if so, use the executable that that
points to instead of the dx in the user's Android SDK. |
Modifier and Type | Method and Description |
---|---|
static DxStep.Option |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DxStep.Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DxStep.Option NO_OPTIMIZE
--no-optimize
flag when running dx
.public static final DxStep.Option FORCE_JUMBO
public static final DxStep.Option USE_CUSTOM_DX_IF_AVAILABLE
buck.dx
property was specified, and if so, use the executable that that
points to instead of the dx
in the user's Android SDK.public static final DxStep.Option RUN_IN_PROCESS
public static final DxStep.Option NO_LOCALS
public static final DxStep.Option NO_DESUGAR
public static DxStep.Option[] values()
for (DxStep.Option c : DxStep.Option.values()) System.out.println(c);
public static DxStep.Option valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null