如何在模拟器中从命令行运行apk

发布于 2024-12-22 12:37:05 字数 131 浏览 0 评论 0原文

如何从控制台在模拟器上启动 apk?我无法找到正确的命令。

我有一个在虚拟机中运行的 Ubuntu,并且有模拟器。我现在尝试安装(adb install App.apk -works!)并从命令行运行它。

提前致谢!

How do I start an apk on the emulator from the console? I wasn't able to find the correct command.

I have an Ubuntu running in a VM and there the emulator. I now try to install (adb install App.apk -works!) and run it from commandline.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萌吟 2024-12-29 12:37:05

安装:

adb -e install -r "your-apk-file-complete-path"

现在运行:

am [start|instrument]
am start [-a <action>] [-d <data_uri>] [-t <mime_type>]
[-c <category> [-c <category>] ...]
[-e <extra_key> <extra_value> [-e <extra_key> <extra_value> ...]
[-n <component>] [-D] [<uri>]
am instrument [-e <arg_name> <arg_value>] [-p <prof_file>]
[-w] <component>

示例启动代码

am start -a android.intent.action.MAIN -n
com.abhi.ui/com.abhi.ui.LaunchIt

to install:

adb -e install -r "your-apk-file-complete-path"

Now to run:

am [start|instrument]
am start [-a <action>] [-d <data_uri>] [-t <mime_type>]
[-c <category> [-c <category>] ...]
[-e <extra_key> <extra_value> [-e <extra_key> <extra_value> ...]
[-n <component>] [-D] [<uri>]
am instrument [-e <arg_name> <arg_value>] [-p <prof_file>]
[-w] <component>

sample launch code

am start -a android.intent.action.MAIN -n
com.abhi.ui/com.abhi.ui.LaunchIt
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文