镜像位置具体参考大佬博客 https://www.anquanke.com/post/id/201896
adb reboot bootloader
——重启手机到fastboot模式, 直接重启手机到fastboot模式,不用关机后再按组合键sh flash-all.sh
, 发现报错/usr/lib/android-sdk/platform-tools/mke2fs failed with status 1
fastboot: error: Cannot generate image for userdata
参考博客 : https://blog.csdn.net/cheriyou_/article/details/109722008 的内容解决
1.打开终端执行which fastboot (eg: /usr/bin/fastboot)
2.打开fastboot所在目录 (cd /usr/bin)
3.检查目录下是否存在make_f2fs文件、mke2fs文件、lib64文件夹(文件夹下含libc++.so文件)
4.不存在从platform-tools中拷贝过去 , platform-tools的下载网址: https://developer.android.com/studio/releases/platform-tools
sudo cp make_f2fs /usr/bin
sudo cp mke2fs /usr/bin
sudo cp -r lib64 /usr/bin
5. 赋予权限
sudo chmod 777 make_f2fs
sudo chmod 777 mke2fs
sudo chmod -R 777 lib64
这里使用 https://github.com/luoyesiqiu/DexRepair
来进行填充
举例:
java -jar ../../DexRepair/output/DexRepair.jar 8732432_dexfile_execute.dex 8732432_ins_4095.bin
会生成: 8732432_dexfile_execute_repair.dex
再次打开jadx ,发现之前的空函数被填充完毕