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

Commit bf3397fd authored by Alice Kuo's avatar Alice Kuo Committed by Automerger Merge Worker
Browse files

Add TbsService to mLeAudioUnicastProfiles am: f6f26372

parents e37d8ca2 f6f26372
Loading
Loading
Loading
Loading
+10 −9
Original line number Diff line number Diff line
@@ -91,14 +91,15 @@ public class Config {
        }
    }

    /**
     * List of profile services related to LE audio
     */
    private static final HashSet<Class> mLeAudioUnicastProfiles = new HashSet<Class>(
            Arrays.asList(LeAudioService.class,
    /** List of profile services related to LE audio */
    private static final HashSet<Class> LE_AUDIO_UNICAST_PROFILES =
            new HashSet<Class>(
                    Arrays.asList(
                            LeAudioService.class,
                            VolumeControlService.class,
                            McpService.class,
                        CsipSetCoordinatorService.class));
                            CsipSetCoordinatorService.class,
                            TbsService.class));

    /**
     * List of profile services with the profile-supported resource flag and bit mask.
@@ -281,7 +282,7 @@ public class Config {
    }

    static HashSet<Class> getLeAudioUnicastProfiles() {
        return mLeAudioUnicastProfiles;
        return LE_AUDIO_UNICAST_PROFILES;
    }

    static Class[] getSupportedProfiles() {