I am trying to change the language on an Android emulator version 6.0 (or higher) through the adb shell. The first change works, but the next one doesn't. On Android 5.0, it works fine -> I was able to change the language more than once.
The commands that I use to change the language are as follows:
- adb shell
- setprop persist.sys.language [XX]
- setprop persist.sys.country [XX]
- stop
- start
Does anyone know what could be the problem?
source
share