DesktopKeyboard2Android
DesktopKeyboard2Android copied to clipboard
Put the key events in a queue, instead of blocking the application
scene.setOnKeyPressed(...) directly calls sendKeyPressed(...). This blocks the app until it can send the request by http to adb. It should instead add these events to a queue, and another thread should send those requests.