Skip to content

Instantly share code, notes, and snippets.

@sabpprook
Created December 31, 2016 20:39
Show Gist options
  • Save sabpprook/26139f6690f694a6462c326d5f113280 to your computer and use it in GitHub Desktop.
Save sabpprook/26139f6690f694a6462c326d5f113280 to your computer and use it in GitHub Desktop.
ADB Change Android Language
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
@Coll147
Copy link

Coll147 commented Nov 23, 2024

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment