gpt4 book ai didi

android - 从命令行在 Android 模拟器上安装和运行 .apk

转载 作者:行者123 更新时间:2023-12-04 20:21:38 25 4
gpt4 key购买 nike

我必须在 android 模拟器上从命令行安装和运行应用程序。我已经阅读了相同的 android 开发人员文档,并按如下方式实现。

要在模拟器上安装 apk:adb -d emulator-5554 install path/to/my/app.apk

这成功地在正在运行的虚拟机上安装了apk。我无法打开安装的应用程序,为此我已经尝试通过命令同时安装和运行

adb -d install path/to/your/app.apk ,

但是这个命令显示错误“

error: device not found

-waiting for device-

我在启动模拟器后尝试了这个命令,但它仍然显示正常的错误

最佳答案

-d 设备

你需要使用

-e for emulator

要将 apk 安装到您需要使用的模拟器中

adb -e install c:\myapk.apk

亚行选项

 -a                            - directs adb to listen on all interfaces for a connection
-d - directs command to the only connected USB device
returns an error if more than one USB device is present.
-e - directs command to the only running emulator. returns an error if more than one emulator is running.
-s <specific device> - directs command to the device or emulator withthe given

关于android - 从命令行在 Android 模拟器上安装和运行 .apk,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23101415/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com