mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
|
From 5cb02870e993ec2704645ade6d5fb79ed56ee710 Mon Sep 17 00:00:00 2001
|
||
|
From: Tad <tad@spotco.us>
|
||
|
Date: Sun, 18 Dec 2016 09:38:09 -0500
|
||
|
Subject: [PATCH] Disable NFC and NDEF by default
|
||
|
|
||
|
Change-Id: I227fa330916166346e6dfc1aff36b40c993fa57f
|
||
|
---
|
||
|
src/com/android/nfc/NfcService.java | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/src/com/android/nfc/NfcService.java b/src/com/android/nfc/NfcService.java
|
||
|
index ab50f23..bd78f77 100755
|
||
|
--- a/src/com/android/nfc/NfcService.java
|
||
|
+++ b/src/com/android/nfc/NfcService.java
|
||
|
@@ -105,9 +105,9 @@ public class NfcService implements DeviceHostListener {
|
||
|
public static final String PREF = "NfcServicePrefs";
|
||
|
|
||
|
static final String PREF_NFC_ON = "nfc_on";
|
||
|
- static final boolean NFC_ON_DEFAULT = true;
|
||
|
+ static final boolean NFC_ON_DEFAULT = false;
|
||
|
static final String PREF_NDEF_PUSH_ON = "ndef_push_on";
|
||
|
- static final boolean NDEF_PUSH_ON_DEFAULT = true;
|
||
|
+ static final boolean NDEF_PUSH_ON_DEFAULT = false;
|
||
|
static final String PREF_FIRST_BEAM = "first_beam";
|
||
|
static final String PREF_FIRST_BOOT = "first_boot";
|
||
|
|
||
|
--
|
||
|
2.9.3
|
||
|
|