In case this helps someone: I changed my phone's language to something buggy called en-XA
(it was called English one
in the UI I believe?) by mistake, and I couldn't even unlock the screen, but I had to fix my language settings somehow. I had no root access, but I had a custom recovery (TWRP) flashed fortunately.
The solution for me was to edit the /data/system/users/0/settings_system.xml
file, this line in particular:
<setting id="24885" name="system_locales" value="en-XA,pl-PL" package="android" defaultValue="en-XA,pl-PL" defaultSysSet="true" preserve_in_restore="true" />
I changed the en-XA
to en-US
, rebooted, and the phone works again!
You can edit the file using your recovery's built-in file editor or use /adb pull /data/system/users/0/settings_system.xml
to download and edit the file locally, then adb push settings_system.xml /data/system/users/0/settings_system.xml
to update it on the device.
BTW I also changed the en-XA
to en-US
in the /data/property/persistent_properties
file before and it didn't work alone, but perhaps both are needed.
Everything tested on a clean Android 11 device.
adb shell
– Rivalry