Why am I getting Permission Denied when trying to push a Sqlite file to my rooted Android device?

‘adb push’ cannot push to data/data/ directory. However, you can do it by using a transfer station like this:

adb push D:\tfs\MyApp\MyDatabase.db3 ~/sdcard/MyDatabase.db3

adb shell

su

mv /sdcard/MyDatabase.db3 /data/data/MyApp/files/MyDatabase.db3

It works for me,good luck to you.

Leave a Comment