我正在尝试将 apk 旁加载到我的设备上,但我收到此错误,尝试上网寻求一些解释和解决方案,但找不到任何错误,请在这里试试我的运气
Microsoft Windows [版本 10.0.22621.3007] (c) 微软公司。保留所有权利。
C:\Users\user\Desktop\platform-tools>adb devices
List of devices attached
10f6af35 device
C:\Users\user\Desktop\platform-tools>adb install YouTube_19.14.42_Apkpure.apk
adb: failed to run abb_exec. Error: closed
adb: retrieving the default device installation mode failed: closedPerforming Streamed Install
adb: failed to run abb_exec. Error: closed
adb: connect error for write: closed
另一个问题是我如何告诉 adb 将特定的 apk 安装到特定路径
我尝试上网寻找解决方案,但没有成功。 我更新了我的驱动程序和 adb。 我更改了 apk 看看是否是 apk 问题仍然无法解决
adb install
是多个adb命令的组合:
pm install
命令安装它。根据错误消息,上传似乎是问题所在。因此,我建议使用不同的方式将 APK 上传到手机(例如通过 USB 文件共享,又名 MTP),然后从您的 PC 执行
adb shell pm install <path to apkfile>
。
或者,上传 APK 后,您应该能够使用 Android 文件管理器安装 APK 文件。