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

Commit 2da0b40c authored by Paul Hu's avatar Paul Hu Committed by Automerger Merge Worker
Browse files

Merge "Add [get|set]MaxManifestReceiverApiLevel to test api for CTS" into sc-dev am: 68c58b9c

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14161095

Change-Id: Ide6860fbe5ed06e717b72b25f24481bf62fb7ec5
parents 18b8ca3e 68c58b9c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -263,10 +263,12 @@ package android.app {

  public class BroadcastOptions {
    ctor public BroadcastOptions(@NonNull android.os.Bundle);
    method public int getMaxManifestReceiverApiLevel();
    method public long getTemporaryAppAllowlistDuration();
    method @Nullable public String getTemporaryAppAllowlistReason();
    method public int getTemporaryAppAllowlistReasonCode();
    method public int getTemporaryAppAllowlistType();
    method public void setMaxManifestReceiverApiLevel(int);
  }

  public class DownloadManager {
+2 −0
Original line number Diff line number Diff line
@@ -250,6 +250,7 @@ public class BroadcastOptions {
     * them.  This only applies to receivers declared in the app's AndroidManifest.xml.
     * @hide
     */
    @TestApi
    @SystemApi(client = SystemApi.Client.MODULE_LIBRARIES)
    public void setMaxManifestReceiverApiLevel(int apiLevel) {
        mMaxManifestReceiverApiLevel = apiLevel;
@@ -259,6 +260,7 @@ public class BroadcastOptions {
     * Return {@link #setMaxManifestReceiverApiLevel}.
     * @hide
     */
    @TestApi
    @SystemApi(client = SystemApi.Client.MODULE_LIBRARIES)
    public int getMaxManifestReceiverApiLevel() {
        return mMaxManifestReceiverApiLevel;