OptimizationInfo
class OptimizationInfo
kotlin.Any | |
↳ | dalvik.system.DexFile.OptimizationInfo |
Encapsulates information about the optimizations performed on a dex file. Note that the info is only meant for debugging and is not guaranteed to be stable across releases and/or devices.
Summary
Public methods | |
---|---|
Boolean |
Returns whether the dex file is fully ahead-of-time compiled. |
Boolean |
Returns whether the dex file is in an optimal state. |
Boolean |
Returns whether the dex file is verified. |
Public methods
isFullyCompiled
fun isFullyCompiled(): Boolean
Returns whether the dex file is fully ahead-of-time compiled.
isOptimized
fun isOptimized(): Boolean
Returns whether the dex file is in an optimal state. Currently, this means the dex file is either ahead-of-time compiled with a profile or fully ahead-of-time compiled.
isVerified
fun isVerified(): Boolean
Returns whether the dex file is verified.