anestisb / vdexExtractor

Tool to decompile & extract Android Dex bytecode from Vdex files
Apache License 2.0
1k stars 214 forks source link

support for oat/art files #4

Closed Cloud-stift closed 6 years ago

Cloud-stift commented 6 years ago

how to use for these files like boot.art/boot.oat/boot.vdex.

anestisb commented 6 years ago

Android's runtime (ART) is using the OAT and ART files along with the VDEX as part of the bytecode execution engine. You can Google around the mechanics of the ART components. A brief overview of this information is available here.

Supporting these files for any purposes is outside the scope of this project. You can find other utilities that can process them (e.g. oatdump).