sqlite3 not found问题解决方法

测试发现,有些Android手机自带sqlite3命令,有些不带。对于不带sqlite3的手机,我们可以手动将sqlite3加入系统。

执行如下命令

adb remount
adb push 路径/sqlite3 /system/xbin
adb shell chmod 777 /system/xbin/sqlite3
原文地址:https://www.cnblogs.com/l2rf/p/4624975.html