Running an Android emulator on your computer is pretty simple.
You probably need to make sure you have JDK first.
First off, download the Android SDK from
http://developer.android.com/sdk/index.html
![]() | |
| Select at least: Android SDK Tools an Android Version its SDK Platform & its ARM EABI System Image |
Then simply extract it
(check the compression quick guide)
Now, from a terminal, cd into the android folder and into the tools directory and run "android":
- cd <android folder>/tools/
- ./android
Choose an Android version and install its packages.
When done, you'll need to create an Android Virtual Device.
First run:
- ./android list
Note the id you want (it might probably be "1" at this point).
Then run:
- ./android create avd -n <choose-a-name-here> -t <target-id>
It will ask if you want to create a custom hardware profile. Unless you want to, you may choose the default [no].
Now you've created an AVD.
If you want to tweak some things like give it some space to use as an SD card for apps, run:
- ./android avd
Now, to run your AVD, run:
- ./emulator -avd <your-avd-name>
And that's it; you now have an Android emulator!
![]() |
| Hallo Android! |
For more info, check the Dev Guide: http://developer.android.com/guide/index.html
visit us at:




Perfect, concise and straight forward :)
ReplyDeletePlease fix it's to its :) otherwise, cheers
ReplyDeleteThanks a lot! Two corrections: You have to downloaded "ADT Bundle", not "Android SDK" (the latter does not have images etc.). Second, I kept getting "permission denied" until I changed permissions for executable files appropriately.
ReplyDeleteIm using Ubuntu 13.04 and have tried as my normal account and sudo'ng as root both with the same issue when i try ./emulator -avd . Says "bash: ./android-sdk/tools/emulator: No such file or directory"
ReplyDeleteAny ideas where the issue is here?
Really wanna get an android emulator working on Linux to play around with things at work instead of using my phone ;) Little cheeky i know :D