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.