Ubuntu – New AVD not creating properly in android

android

I have copied android-sdk-linux folder from one PC to another PC, and installed Eclipse and Set appropriate paths (both tools and Platform-tools) but I cannot create any avd.

When I try to create new avd from Android Virtual Device Manager, it only show this error message in console when I click new avd.

[2012-05-29 23:29:27 - SDK Manager] Failed to create the SD card.
[2012-05-29 23:29:27 - SDK Manager] Failed to create sdcard in the AVD folder.

I put my android-sdk-linux folder in /home/dharma/Android-sdk-linux

On my pc, I didn't find home/username/.Android/avd. So what can I do to run my app in the emulator.

Best Answer

Android SDK does have some requirements on the Ubuntu 64-bit base:

adb

sudo apt-get install libc6:i386 libstdc++6:i386

aapt

sudo apt-get install zlib1g:i386

https://stackoverflow.com/questions/3878445/ubuntu-error-failed-to-create-the-sd-card

Related Question