Send non-english text using adb (input keyevent) or using monkeyrunner

I want to send non-English text to an Android device. I am trying to use a command like monkeyrunner and an adb shell command (input keyevent ...), without any success. Please, help.

+4
source share
2 answers

You can try using ADBKeyBoard created by Eric Tan

Check the adb or github shell Unicode input character to find more details.

+1
source

I use monkeyrunner to send non-English characters in SMS.

I just put

# coding=utf8 

at the beginning of my python file, it worked fine for me. Hope this helps.

0
source

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


All Articles