adb

1. 安装adt-bundle-windows-x86

2. adb路径是adt-bundle-windows-x86\sdk\platform-tools

3. 设置电脑的环境变量,增加adb路径

adb


4.device端运行 start adbd 启动adb进程

备注:adbd ->adb daemon


5.

adb connect {tcp/ip}

adb push test.txt /sdcard/

adb shell
mount -o rw,remount /dev/block/stl9 /system

cp /sdcard/test.txt /system/app/test.txt


6. 

adb install *.apk

adb uninstall com.example.demo


reference:

Android Debug Bridge


Reading and Writing Logs