1
  1. Is there a way to type non-English characters via androidviewclient? Cyrillic in my case. I added Russian layout to Genymotion and all others Input methods but no luck.

  2. Or maybe a way to use Copy/Paste? This solution is even better, because I need to type some emojis also.

I'm using Genymotion with Android 4.2.2 (API 17).

noobz
  • 33
  • 1
  • 3

1 Answers1

0

Current AndroidViewClient relies on input command to type characters and it crashes when non-ascii chars are sent. You can try:

root@hammerhead:/ # input text öüï                                             
Killed 

It's in the roadmap to implement alternative methods to find a workaround for this problem.

Diego Torres Milano
  • 65,697
  • 9
  • 111
  • 134
  • 1
    Thanks for the answer! I found workaround myself [ADBKeyBoard](https://github.com/senzhk/ADBKeyBoard) – noobz May 22 '15 at 09:32