adb 安装软件

一.连接

adb connect 192.168.1.10

输出

connected to 192.168.1.10:5555

二.查看设备

adb devices

输出

List of devices attached
192.168.1.10:5555    device

三.卸载原来的软件

adb uninstall "com.xxx.deliveryrobot"

输出

Success

四.安装新的软件

adb install 新软件.apk

输出

Success

原文地址:https://www.cnblogs.com/sea-stream/p/10020438.html