1. 程式人生 > >Android root 之後檢視資料庫檔案

Android root 之後檢視資料庫檔案

這裡寫圖片描述
//獲取root許可權
1、adb push su /system/bin/adb shell chmod4755/system/bin/su
2、adb shell
3、su

//報錯
[2015-01-05 19:09:05 - ddms] transfer error: Permission denied
[2015-01-05 19:09:05] Failed to push selection: Permission denied
解決
adb shell
755 chmode data/data/com…/databases/cache01.db

//修改檔案許可權
adb shell su -c “777 chmod data/data/…”