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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment