赞
踩
Performing Push Install
adb.exe: need APK file on command line
解决方法:
查看安装包是否后缀不正确,如被微信重命名加了.1
Failure [INSTALL_FAILED_SHARED_USER_INCOMPATIBLE]
解决
因为在在manifest中设置了 android:sharedUserId="android.uid.system"
属性,但没有进行对应的系统签名。进行系统签名,或者去除android:sharedUserId="android.uid.system"
属性.
解决
版本较老,需要提高所安装的版本号,或卸载后再安装(如果是系统软件,需要root后,删除/system/app
对应的软件包)。
adb install /mnt/usb/0BA1-1862/b/demo.apk
adb install -r /mnt/usb/0BA1-1862/b/demo.apk
解决
debug版本需要加-t以测试模式运行
adb install -t demo.apk
Performing Streamed Install
adb: failed to install test.apk: Failure [INSTALL_FAILED_ALREADY_EXISTS: Attempt to re-install com.ah.sample without first uninstalling .]
解决
有同名包名app,需卸载重装。
如果是系统软件,需要root后,删除/system/app
对应的软件包
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。