Reputation: 574
How can I set custom Locale from terminal to run on android emulator? I know that there is already set custom locale app on the emulators but for pt-BR or es-US it is not working. I want to force it from terminal.
Upvotes: 0
Views: 706
Reputation: 574
adb shell ' setprop persist.sys.language de; setprop persist.sys.country DE; stop; sleep 5; start'
Upvotes: 1