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

Commit 670ec7ce authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 5936682 from a5f20648 to rvc-release

Change-Id: I31e6a5f8477a61304bf02efde3aec21383411026
parents 67055b05 a5f20648
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ class AvrcpPlayer {
    private String mName = "";
    private int mPlayerType;
    private byte[] mPlayerFeatures = new byte[16];
    private long mAvailableActions;
    private long mAvailableActions = PlaybackStateCompat.ACTION_PREPARE;
    private MediaMetadata mCurrentTrack;
    private PlaybackStateCompat mPlaybackStateCompat;
    private PlayerApplicationSettings mSupportedPlayerApplicationSettings =
@@ -63,7 +63,7 @@ class AvrcpPlayer {
        mAvailableActions = PlaybackStateCompat.ACTION_PAUSE | PlaybackStateCompat.ACTION_PLAY
                | PlaybackStateCompat.ACTION_SKIP_TO_NEXT
                | PlaybackStateCompat.ACTION_SKIP_TO_PREVIOUS
                | PlaybackStateCompat.ACTION_STOP;
                | PlaybackStateCompat.ACTION_STOP | PlaybackStateCompat.ACTION_PREPARE;
        PlaybackStateCompat.Builder playbackStateBuilder = new PlaybackStateCompat.Builder()
                .setActions(mAvailableActions);
        mPlaybackStateCompat = playbackStateBuilder.build();