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

时间:2011-12-22 15:12:16

标签: android command-line emulation

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

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

提前致谢!

2 个答案:

答案 0 :(得分:10)

安装:

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

答案 1 :(得分:3)