When I try to run my Android app on an emulator I get this error:
/dev/kvm permission denied.
I checked the permissions and ad
sudo groupadd -r kvm
sudo gedit /lib/udev/rules.d/60-qemu-system-common.rules
Add the following line to the opened file and save it
KERNEL=="kvm", GROUP="kvm", MODE="0660"
Finally run:
sudo usermod -a -G kvm
Reboot your PC and Done!