How do I run the Android emulator from a terminal on Ubuntu?

I am interested in setting up and running from the command line: AVD Manager is not always suitable.

Author: stanislav, 2010-10-19

1 answers

Go to the /tools folder.

Get a list of system execution images.

./android list targets

Create a virtual device by passing the number of the desired image with the t parameter.

./android create avd -n sample -t 1 -c 128M -f

Start the device virtually.

./emulator -avd sample
 0
Author: stanislav, 2010-10-19 17:30:01