本文介绍了Android 5.0中OAT文件的路径是什么的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Android 5.0在安装应用程序时使用dex2oat将dex文件转换为oat文件.但是在我的手机上只能找到boot.oat,转换后的oat文件的确切路径在哪里?我想进行调查.

Android 5.0 uses dex2oat to convert dex file to oat file when app installing.But in can only find boot.oat on my phone,where is the exactly path of convrted oat file?I want to have one for investigation.

推荐答案

实际上,我在下面的文档中找到了答案.

Actually I find the answer by the doc below.

Dex2oat
–   Ex:
/system/bin/dex2oat --zip-fd=6 --zip-location=/system/app/
Email.apk --oat-fd=7 --oat-location=/data/dalvik-cache/
system@[email protected]@classes.dex --profile-file=/data/
dalvik-cache/profiles/com.android.email
Result  OAT file    will    be  placed  in  /data/dalvikcache

http://bofh.nikhef.nl/events/HitB/hitb-2014-amsterdam/praatjes/D1T2-最新技术探索状态-新Android-KitKat-Runtime.pdf

这篇关于Android 5.0中OAT文件的路径是什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-18 23:30