如何从模拟器的命令行运行apk
如何从控制台启动模拟器上的apk? 我无法找到正确的命令。
我有一个运行在虚拟机中的Ubuntu,并有模拟器。 我现在尝试安装(adb安装App.apk -works!)并从命令行运行它。
提前致谢!
安装:
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
这里很好地描述:http://www.android.pk/blog/general/launch-app-through-adb-shell/
链接地址: http://www.djcxy.com/p/90681.html