- 查看版本
adb version
- 查看连接设备
adb devices
-
强制安装应用
-r 替换已存在的应用程序,即强制安装
adb install -r D:\temp\weibo.apk
报错 Installation failed with message INSTALL_FAILED_UPDATE_INCOMPATIBLE
,是签名与先前安装的版本不匹配,卸载应用即可
- 卸载之前的应用
adb uninstall com.sina.weibo
- 启动应用
adb shell am start -n 包名/类名
举例:
adb shell am start -n com.sina.weibo/com.sina.weibo.WelcomeActivity
adb shell am start -n cn.edu.bnu.lcell.reading/cn.edu.bnu.lcell.reading.WelcomeActivity
网友评论