Skip to content
Snippets Groups Projects
Commit db3505b0 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Change the toggle from "Enable LE audio" to "Disable LE audio"" am:...

Merge "Change the toggle from "Enable LE audio" to "Disable LE audio"" am: 4e8a90d7 am: c53bc2a6

Original change: https://android-review.googlesource.com/c/platform/packages/modules/Bluetooth/+/2516915



Change-Id: Ie3c6184e440c075e1118aa885f07b49c760a30d4
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents c29abec3 c53bc2a6
No related branches found
No related tags found
No related merge requests found
......@@ -69,8 +69,8 @@ public class Config {
"ro.bluetooth.leaudio_switcher.supported";
private static final String LE_AUDIO_BROADCAST_DYNAMIC_SWITCH_PROPERTY =
"ro.bluetooth.leaudio_broadcast_switcher.supported";
private static final String LE_AUDIO_DYNAMIC_ENABLED_PROPERTY =
"persist.bluetooth.leaudio_switcher.enabled";
private static final String LE_AUDIO_SWITCHER_DISABLED_PROPERTY =
"persist.bluetooth.leaudio_switcher.disabled";
private static final Set<String> PERSISTENT_FLAGS = Set.of(
FEATURE_HEARING_AID,
......@@ -184,12 +184,12 @@ public class Config {
SystemProperties.getBoolean(LE_AUDIO_DYNAMIC_SWITCH_PROPERTY, false);
if (leAudioDynamicSwitchSupported) {
final String leAudioDynamicEnabled = SystemProperties
.get(LE_AUDIO_DYNAMIC_ENABLED_PROPERTY, "none");
if (leAudioDynamicEnabled.equals("true")) {
setLeAudioProfileStatus(true);
} else if (leAudioDynamicEnabled.equals("false")) {
final String leAudioSwitcherDisabled = SystemProperties
.get(LE_AUDIO_SWITCHER_DISABLED_PROPERTY, "none");
if (leAudioSwitcherDisabled.equals("true")) {
setLeAudioProfileStatus(false);
} else if (leAudioSwitcherDisabled.equals("false")) {
setLeAudioProfileStatus(true);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment