sypher93
sypher93

Reputation: 41

how do i configure my android emulator to start running in intelij?

I am getting this error whenever I try to run my emulator:

Failed to start emulator: Cannot run program "/home/sypher/android-sdk-linux/tools/emulator": java.io.IOException: error=2, No such file or directory

Upvotes: 2

Views: 890

Answers (1)

anon
anon

Reputation: 4202

I had the same problem, and as harper89 mentioned, I found the answer in this this question. I had to install the ia32-libs package. Assuming you are running a distro with apt:

sudo apt-get install ia32-libs

Thanks, hertzsprung.

Upvotes: 2

Related Questions