Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bienpx224/9d0af0715abd8d53168955a045bf86d0 to your computer and use it in GitHub Desktop.
Save bienpx224/9d0af0715abd8d53168955a045bf86d0 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