https://blog.csdn.net/lanmengfenghe/article/details/106249208

一般我们调试时会使用debug版本,兼顾user性能与eng的易调试性。自Android8 开始debug版本remount前,需要先执行:

adb root
adb disable-verity
adb reboot

待重启后,方能再执行adb remount 挂载成功。

最近使用Android 10时,发现这样也不行,貌似被锁了falsh,可能与芯片设置有关。需要先解锁flash才行,步骤如下:

adb reboot bootloader

fastboot flashing unlock
fastboot reboot

接下来才行再执行,

adb root
adb disable-verity
adb reboot

后面才能再执行adb remount


0 条评论

发表回复

您的电子邮箱地址不会被公开。