
Browser testing is critical to any web developer, designer… really any web professional. You need to know how your users or customers are seeing your work through the multitude of browsers and devices available to them, new ones become available every day.
About a year ago I wrote a post walking you through installing the Google Android SDK on your machine to use as a mobile web browser. This time I am doing it on Mac OS X but I might just make a Windows version too if I get a little time… let me know if you’d like to see that happen.
Let’s get started…
Get the SDK…
- Go to the Android SDK page.
- Download Android SDK for Mac OS X (intel)
- Unzip it and move it to the root of your home directory.
Set it up…
- Open Terminal, enter the following commands…
cd ~ nano .bash_profile - Paste this into the new file, or add it if there are existing contents.
export PATH=${PATH}:~/android-sdk-mac/tools - Press “Control X” and save the file.
- Close Terminal.
Load up an Android OS…
- Open Terminal, enter the following command…
android - Choose “Available Packages”
- Click the arrow beside “dl-ssl.google.com…”
- Check one or more Android Platforms, I chose Android 1.6 and 2.0 for good measure you can choose whatever versions you are targeting.
- Click “Install Selected” and then “Install Accepted”
- Your SDK is now complete and ready to run… Stick in your Android SDK and AVD Manager let’s make a device!
Getting your virtual Android device ready…
- Chose “Virtual Devices”
- Click “New…”

- Give your AVD a name for this tutorial I chose “default2.0″
- Choose one of the Android platforms you downloaded in the “Target” pulldown, I chose Android 2.0.
- Give the SD card some value, let’s say 25mb.
- Click “Create AVD”
- You should return back to the home screen, click your new Android AVD’s name and press “Start”
- Success!

Create an icon of sorts to launch your new emulator…
- Open Terminal, enter the following commands…
cd ~/Desktop/ nano Android.command - Add this command to the new file…
emulator -scale .7 -avd default2.0 - Press “Control X” and save the file
- Run this final command….
chmod 755 Android.command - Close Terminal
- Double click on Android.command on your desktop… Success!

Related posts:



Definitely very nice – I don’t have an Android phone myself but it will be nice to test the mobile themes of my various sites using the Android mobile browser on my my MacBook Pro :)
when i type “android” i get the following message:
“-bash: android: command not found”
any suggestions? thanks!
Pingback: John From Berkeley » links for 2009-11-25
Great post. Thanks.
@John- The walk-through omits that when you save the command in Terminal (Step 2), you should rename it “android.”
Pingback: How To: Install and Browser Test Your Site With Google Android Right on Your PC – buildcontext
I just came across your blog and wanted to drop you a note telling you how impressed I was with the information you have posted here.
Keep up the great work, you are providing a great resource on the Internet here!
Cheers for the nice post on the Android SDK!
-Joseph
thanks for your guide:-)
I actually have a real-live Android TMO MyTouch. I’d love to know how to actually get the SDK user interface to show me exactly what’s on the screen of my MyTouch. Or better yet, grab JPG images of whatever’s on the phone display. Is this even do-able? Thanks in advance!
–Bill
Thanks! There’s one major omission, and it’s NOT to rename the .bash_profile as suggested above (that caused hours of headache).
The thing that needs to be clarified is that you need
export PATH=${PATH}:~/android-sdk-mac/tools
To actually say:
export PATH=${PATH}:~/FULL PATH HERE/tools
Mine was something like this:
export PATH=${PATH}:~/Users/james/Documents/SDK/tools
If you screw this up once you will end up with multiple .bash files in your home directory. You can download Houdini to see files that start with a “.” and delete what needs to be fixed.
One other thing, for those not as familiar with Terminal (I wasn’t), you can just double-click the ‘Android’ file in the /tools/ folder and it will launch in Terminal.
Hey there.
First of all, thanks for the great post.
There’s a new version of the Android SDK available here: http://developer.android.com/sdk/index.html
Pingback: HOW TO: Optimize Your Mobile Site Across Multiple Platforms
Pingback: 123-sale.com Blogs - HOW TO: Optimize Your Mobile Site Across Multiple Platforms
Pingback: HOW TO: Optimize Your Mobile Site Across Multiple Platforms | RetweetToday.com | News for Us, by Us!
How do I get Android to hook up to my computers localhost? I have MAMP installed.
Thanks for your help!
Ben