public enum OptionalCompilationStep extends java.lang.Enum<OptionalCompilationStep>
| Enum Constant and Description |
|---|
FULL_APK
Force rebuild of fresh install artifacts.
|
INSTANT_DEV
presence will turn on the InstantRun feature.
|
RESTART_ONLY
Force rebuild of cold swap artifacts.
|
| Modifier and Type | Method and Description |
|---|---|
static OptionalCompilationStep |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OptionalCompilationStep[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionalCompilationStep INSTANT_DEV
public static final OptionalCompilationStep RESTART_ONLY
Dex files and/or resources.ap_ for ColdswapMode.MULTIDEX and some split APKs for ColdswapMode.MULTIAPK.
public static final OptionalCompilationStep FULL_APK
A full apk for ColdswapMode.MULTIDEX and all the split apks for ColdswapMode.MULTIAPK.
public static OptionalCompilationStep[] values()
for (OptionalCompilationStep c : OptionalCompilationStep.values()) System.out.println(c);
public static OptionalCompilationStep valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null