Package io.github.neonorbit.dexplore
Class DexOptions
- java.lang.Object
-
- io.github.neonorbit.dexplore.DexOptions
-
public final class DexOptions extends java.lang.Object
- Since:
- 1.0.0
-
-
Field Summary
Fields Modifier and Type Field Description boolean
enableCache
This is useful if you want to search for multiple items on a single dexplore instance.DexOpcodes
opcodes
Dalvik/ART Opcodes.boolean
rootDexOnly
Root dex files are: [Classes.dex, Classes2.dex ...
-
Constructor Summary
Constructors Constructor Description DexOptions()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DexOptions
getDefault()
-
-
-
Field Detail
-
opcodes
public DexOpcodes opcodes
Dalvik/ART Opcodes.Default:
auto
- Since:
- 1.0.0
-
enableCache
public boolean enableCache
This is useful if you want to search for multiple items on a single dexplore instance.Default:
false
- Since:
- 1.0.0
-
rootDexOnly
public boolean rootDexOnly
Root dex files are:[Classes.dex, Classes2.dex ... ClassesN.dex]
Default:
false
- Since:
- 1.0.0
-
-
Method Detail
-
getDefault
public static DexOptions getDefault()
- Returns:
- a default
DexOptions
instance
-
-