Android Emulator + Qemu vnc

I am trying to run the emulator as follows:

emulator -avd name -qemu -vnc :4

And I have an error:

Could not read keymap file: 'en-us'

Is this an emulator error or qemu error? How can i fix this?

I read this section and created a symlink from /urs/local/Cellar/qemu/1.7.0_1/share/qemu/keymapsto my folder android-sdk/tools, but that did not help. (I am using OS X 10.9)

I hope for your help.

thank

+4
source share
2 answers

This seems to be a qemu thing.

Create this folder: (android-sdk) / tools / keymaps

Create an empty file in (android-sdk) / tools / keymaps called en-us.

The emulator should start now.

+3
source

It may be a shorter way, but this method solved my problem.

:

emulator -avd name -qemu -vnc :4 -k tr 

:

keymaps [ANDROID_SDK]/tools/lib/pc-bios/

+2

Source: https://habr.com/ru/post/1541120/


All Articles