微信数据导出-ADB
1 | # 需在模拟器设置中打开root和ADB,一般重启后生效 |
adb pull
报错 Permission denied
先复制到 /sdcard/
后再 adb pull
1 | cp <source_path> /sdcard/ |
error: more than one device/emulator
有多个设备同时连接 ADB,需要指定设备
1 | adb -s <SerialNumber> shell # 或者其他命令 |