chore: add dev doc content

This commit is contained in:
Jixun Wu 2023-06-16 20:44:08 +01:00
parent b85c464e24
commit c58a40a1a6
1 changed files with 9 additions and 0 deletions

9
docs/adb_dump.md Normal file
View File

@ -0,0 +1,9 @@
# 利用 ADB 访问安卓私有数据
```sh
APP_ID="com.tencent.qqmusic" # QQ 音乐
APP_ID="cn.kuwo.player" # 酷我
adb shell su -c "tar c '/data/data/${APP_ID}/' | base64" \
| base64 -d | pv | tar -x --strip-components 2
```