Android "adb install" 什么都不做

Android "adb install" does nothing

我在使用 adb 安装简单的 .apk 文件时遇到问题。这是我输入并返回的内容:

adb install test.apk
4445 KB/s (1921193 bytes in 0.422s)

为了调试,我添加了跟踪标志并返回:

adb install test.apk ADB_TRACE=1
4445 KB/s (1921193 bytes in 0.422s)
Aborted

此外,adb devices 命令会列出我的设备,当我手动将 .apk 复制到我的设备时,它 installs/runs 没问题。

求助:(

试试下面

adb 安装-r test.apk

或者您需要在android设置中启用安装未知来源应用。

不太确定发生了什么,但在系统更新后它现在可以正常工作了。