
The shipped qcrilNr.db on diting miui V816.0.7.0.ULFMIXM has version 15.0 and sets persist.vendor.radio.unicode_op_names to true. However xiaomi missed to include the migration to vendor, leading to OTA updates missing the new change. Add the migration based on observing the stock db changes. Change-Id: Iced27d8d8ea02594dd4c26a5ed6b8c51b4b61f20
9 rindas
404 B
SQL
9 rindas
404 B
SQL
/*
|
|
Copyright (C) 2024 The LineageOS Project
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
CREATE TABLE IF NOT EXISTS qcril_properties_table (property TEXT PRIMARY KEY NOT NULL, def_val TEXT, value TEXT);
|
|
INSERT OR REPLACE INTO qcril_properties_table(property, def_val) VALUES('qcrildb_version',15.0);
|
|
UPDATE qcril_properties_table SET def_val="true" WHERE property="persist.vendor.radio.unicode_op_names";
|