Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions core/java/android/ext/settings/ExtSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ public class ExtSettings {
public static final IntSetting BLUETOOTH_AUTO_OFF = new IntSetting(
Setting.Scope.GLOBAL, Settings.Global.BLUETOOTH_AUTO_OFF, 0 /* off by default */);

// When true, only Bluetooth Low Energy works; Classic (BR/EDR) profiles are disabled.
public static final BoolSysProperty BLUETOOTH_BLE_ONLY = new BoolSysProperty(
"persist.bluetooth.ble_only", false);

// The amount of time in milliseconds before a Nfc adapter is turned off
public static final IntSetting NFC_AUTO_OFF = new IntSetting(
Setting.Scope.GLOBAL, Settings.Global.NFC_AUTO_OFF, 0 /* off by default */);
Expand Down
Loading