安装、卸载apk的几种方式

1 使用ddms
DDMS-Push a file out to the device
data/app or system/app
Delete the selection
2 adb 命令
安装:进入目录 adb install xxx.apk
or adb push xxx.apk 目录
卸载:
进入目录:adb shell ,rm xxx.apk
or adb uninstall

你可能感兴趣的:(Android)