Skip to content Skip to sidebar Skip to footer

Android Failed To Start Emulator:cannot Run Program

I have installed android SDK and android eclipse plugin successfully on Ubuntu. Every thing was working fine until I removed Ubuntu and installed Linux Mint. I installed the SDK a

Solution 1:

  1. Installed on Ubuntu successfully. but not running avd

    If you're running a 64-bit system, you need to install ia32-libs

  sudo apt-get install ia32-libs
  1. R can not be resolved to a variable

This can be due to following Reason

  • class is not the part of that package add proper package

  • not properly defined in manifest file class path define it properly

clear and run the avd it will work

Solution 2:

If cmd from fist comment doesn't work like in my case (64bit Crunchbang) then you may also try with :

sudo aptitude install ia32-libs lib32ncurses5 lib32stdc++6

Solution 3:

I solved it doing a backup of the "emulator" and creating a symbolic link to the correct emulator:

mv emulator emulator_bup
ln -s emulator64-arm emulator

Solution 4:

I used the command-line tool android (android avd), and used Tools->Manage SDK to install 64 bit emulators. I then mv'ed emulator to emulator.old, and emulator64-arm to emulator. Now the AVD starts up.

Solution 5:

You do not need install packages any more!

In directory tools, there are many types of emulator, while my computer works with emulator64-arm! My system is Linux Mint 16 amd64! Good luck!

./emulator64-arm @yxphone -sdcard yxsd -scale 0.8

Post a Comment for "Android Failed To Start Emulator:cannot Run Program"