Skip to main content

adb命令的使用

huhxLess than 1 minute

卸载应用

有时候手机上面debug时的应用没能删除干净,导致后续的安装会出错。这时可以通过adb命令来删除手机上的应用

## get device id
adb devices | tail -n +2 | cut -sf 1

## uninstall apk
adb -s <device ID> uninstall <package name>

## example
adb -s 4c0e5ef8 uninstall com.huhx.love_family
adb -s 192.168.31.53:39873 uninstall com.huhx.lifetool