12345678910 |
- /*
- Copyright (c) 2023 Qualcomm Technologies, Inc.
- All Rights Reserved.
- Confidential and Proprietary - Qualcomm Technologies, Inc.
- */
- 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',14.0);
- DELETE FROM qcril_properties_table WHERE property="persist.vendor.radio.sglte.eons_domain";
- DELETE FROM qcril_properties_table WHERE property="persist.vendor.radio.sglte.eons_roam";
|