Created
December 31, 2016 20:39
-
-
Save sabpprook/26139f6690f694a6462c326d5f113280 to your computer and use it in GitHub Desktop.
ADB Change Android Language
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb shell content query --uri content://settings/system --where "name=\'system_locales\'" | |
adb shell content delete --uri content://settings/system --where "name=\'system_locales\'" | |
adb shell content insert --uri content://settings/system --bind name:s:system_locales --bind value:s:en-US | |
adb shell content insert --uri content://settings/system --bind name:s:system_locales --bind value:s:zh-Hant-TW | |
adb shell content insert --uri content://settings/system --bind name:s:system_locales --bind value:s:zh-Hant-TW,en-US,ja-JP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a lot man, I don't know how but it helped me to change the system language on a Oneplus with ColorOS, an operating system that was not supposed to have a Spanish language. Thank you very much.