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

Commit 1dfec66d authored by Hyundo Moon's avatar Hyundo Moon
Browse files

Make hidden constructor of PlaybackInfo as @SystemApi

When the android build setting is configured to a rule which moves
MediaSession1 related codes to mainline module, the non-public and
non-system APIs in the module cannot be used by the framework.

This CL makes the hidden constructor of PlaybackInfo as
system API, so that it can be used by the framework.

Bug: 123500940
Test: make update-api -j; make -j;
Change-Id: I8583d6f79c70f8bbbbedfa0a75676218aeec58e6
parent 0def48bd
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -3618,6 +3618,10 @@ package android.media.session {
    method public void unregisterCallback(@NonNull android.media.session.ControllerCallbackLink);
  }
  public static final class MediaController.PlaybackInfo implements android.os.Parcelable {
    ctor public MediaController.PlaybackInfo(int, int, int, int, android.media.AudioAttributes);
  }
  public abstract static class MediaSession.Callback {
    method public void onSetMediaButtonEventDelegate(@NonNull android.media.session.MediaSessionEngine.MediaButtonEventDelegate);
  }
+2 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ package android.media.session;

import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.SystemApi;
import android.annotation.UnsupportedAppUsage;
import android.app.PendingIntent;
import android.content.Context;
@@ -1011,6 +1012,7 @@ public final class MediaController {
        /**
         * @hide
         */
        @SystemApi
        public PlaybackInfo(int type, int control, int max, int current, AudioAttributes attrs) {
            mVolumeType = type;
            mVolumeControl = control;