From f1758aed19f5414d4572c72f13a072892dcb765a Mon Sep 17 00:00:00 2001 From: Kyle Harrison Date: Wed, 10 Aug 2022 18:00:57 -0600 Subject: [PATCH] msm8974-common: props: Don't write binary XML files - Android 12 now writes XML files in binary format by default. This can cause incompatibility with TWRP which can hang when attempting to read XML files e.g. /data/system/storage.xml - This commit sets the persist.sys.binary_xml property to false so that XML files are written in text format. --- system.prop | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system.prop b/system.prop index f1464a0..a4b7017 100644 --- a/system.prop +++ b/system.prop @@ -34,5 +34,8 @@ persist.rild.nitz_short_ons_1="" persist.rild.nitz_short_ons_2="" persist.rild.nitz_short_ons_3="" +# System +persist.sys.binary_xml=false + # Time persist.timed.enable=true