使用adb不识别sqlite3

前端之家收集整理的这篇文章主要介绍了使用adb不识别sqlite3前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

解决方法

运行模拟器,在/system/xbin 文件夹下找到sqlite3 复制出来

1.通过工具直接将sqlite3 push到手机

2.通过以下指令

#mount -o remount,rw /dev/system/mtdblock6 /system
#cp /sdcard/sqlite3 /system/xbin/sqlite3
#chmod 755 /system/xbin/sqlite3
#chown root.shell /system/xbin/sqlite3

即可解决

原文链接:https://www.f2er.com/sqlite/200978.html

猜你在找的Sqlite相关文章