Home
Overloaded function.
is_vdex(path: str) -> bool
Check if the file given in parameter is an VDEX
is_vdex(raw: List[int]) -> bool
Check if the raw data given in parameter is a VDEX
Overloaded function.
version(file: str) -> int
Return the VDEX version of the file given in parameter
version(raw: List[int]) -> int
Return the VDEX version of the raw data given in parameter
Return the ANDROID_VERSIONS
associated with the given VDEX version
Overloaded function.
parse(filename: str) -> LIEF::VDEX::File
Parse the given filename and return a File
object
parse(raw: List[int], name: str = ‘’) -> LIEF::VDEX::File
Parse the given raw data and return a File
object
parse(io: object, name: str = ‘’) -> LIEF::VDEX::File