Why I can't start android emulator? There is error message like this,
Starting emulator for AVD 'Sen'
Failed to start emulator: Cannot run program "/opt/android-sdk-linux/tools/emulator": error=13, Permission denied
Why I can't start android emulator? There is error message like this,
Starting emulator for AVD 'Sen'
Failed to start emulator: Cannot run program "/opt/android-sdk-linux/tools/emulator": error=13, Permission denied
You are running a program from /opt
folder.
You need to run it with sudo
or you could move your sdk to your home folder where you have read/write access.
Third way is to set chmod -R 775 /opt/android-sdk-linux
.
I suggest the second method.
Either one will allow you to use the 32-bit binaries, but please be aware that these will disappear in a future Android SDK release. Consider moving to a 64-bit Linux system before that happens.
– Tje Sen Liem Feb 04 '17 at 12:37