Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run apk from commandline in emulator

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!

like image 315
Jasi Avatar asked Dec 22 '11 15:12

Jasi


Video Answer


2 Answers

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
like image 97
Abhinava Avatar answered Oct 17 '22 12:10

Abhinava


Nicely described here: http://www.android.pk/blog/general/launch-app-through-adb-shell/

like image 39
nwaltham Avatar answered Oct 17 '22 11:10

nwaltham