在Android.mk中添加配置:
LOCAL_DEX_PREOPT := false
如果是 Android.bp
android_app {
// 添加下面配置
dex_preopt: {
enabled: false,
},
}