Forked from sabpprook/gist:26139f6690f694a6462c326d5f113280
Created
May 24, 2022 17:40
-
-
Save bienpx224/9d0af0715abd8d53168955a045bf86d0 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