Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9fcddcc8 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 4378450 from 32638175 to oc-mr1-release

Change-Id: Iff92a689eb1b28b256768e308d0bcaa92120ec08
parents 48fd83a9 32638175
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -2374,6 +2374,20 @@ public final class Avrcp {
                ProfileService.println(sb, "  " + log);
            }
        }

        // Print the blacklisted devices (for absolute volume control)
        SharedPreferences pref =
                mContext.getSharedPreferences(ABSOLUTE_VOLUME_BLACKLIST, Context.MODE_PRIVATE);
        Map<String, ?> allKeys = pref.getAll();
        ProfileService.println(sb, "");
        ProfileService.println(sb, "Runtime Blacklisted Devices (absolute volume):");
        if (allKeys.isEmpty()) {
            ProfileService.println(sb, "  None");
        } else {
            for (String key : allKeys.keySet()) {
                ProfileService.println(sb, "  " + key);
            }
        }
    }

    public class AvrcpBrowseManager {