如何阻止 ART 在 android 8.0(Oreo) 中为第三方应用程序创建 /OAT/..odex

问题描述 投票:0回答:1

目前,每当我在运行时启动该应用程序时,ART 都会为每个应用程序创建 oat 文件夹。这个 oat 文件夹包含 .odex 和 .vdex 文件: 例如

app/sample.apk
app/oat

app/oat/instruction_set/sample.odex
app/oat/instruction_set/sample.vdex

如何停止在 Android Oreo 中创建这个 oat 文件夹?

android android-8.0-oreo
1个回答
0
投票

在 Android.mk 文件中添加以下行:

LOCAL_DEX_PREOPT := false
© www.soinside.com 2019 - 2024. All rights reserved.