Nfc: Rename system properties in Nfc settings

The nfc properties are now added to system/libsysprop and
were renamed at the same time for homogenity.

Bug: 268219397
Test: m Settings
Change-Id: I496e128b9db225aac583a1e0b91687f78a268b63
(cherry picked from commit 94e898a02b)
This commit is contained in:
Henri Chataing
2023-02-09 16:53:56 +00:00
parent 4de9ff1a8f
commit b2e4e3c85f
2 changed files with 4 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ public class NfcSnoopLogPreferenceController extends
"nfc_snoop_log";
@VisibleForTesting
static final String NFC_NFCSNOOP_LOG_MODE_PROPERTY =
"persist.nfc.nfcsnooplogmode";
"persist.nfc.snoop_log_mode";
@VisibleForTesting
static final String NFCSNOOP_MODE_FILTERED = "filtered";
@VisibleForTesting

View File

@@ -36,11 +36,11 @@ public class NfcVerboseVendorLogPreferenceController
private static final String NFC_VERBOSE_VENDOR_LOG_KEY = "nfc_verbose_vendor_log";
@VisibleForTesting
static final String NFC_VERBOSE_VENDOR_LOG_PROPERTY =
"persist.nfc.verbosevendorlog";
"persist.nfc.vendor_debug_enabled";
@VisibleForTesting
static final String VERBOSE_VENDOR_LOG_ENABLED = "enabled";
static final String VERBOSE_VENDOR_LOG_ENABLED = "true";
@VisibleForTesting
static final String VERBOSE_VENDOR_LOG_DISABLED = "disabled";
static final String VERBOSE_VENDOR_LOG_DISABLED = "false";
@VisibleForTesting
boolean mChanged = false;