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

Commit c0f77b8c authored by Kweku Adams's avatar Kweku Adams
Browse files

Add new capability name.

Rename PROCESS_CAPABILITY_NETWORK to PROCESS_CAPABILITY_POWER_RESTRICTED_NETWORK so it's clearer what the capability grants.

Bug: 261999509
Change-Id: Ie0cc529c9154d6e3ac69d2d9e5a760a62bd7fe92
Test: CTS
parent d50bb77f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -145,7 +145,8 @@ package android.app {
    method @RequiresPermission(android.Manifest.permission.DUMP) public void waitForBroadcastIdle();
    field public static final long LOCK_DOWN_CLOSE_SYSTEM_DIALOGS = 174664365L; // 0xa692aadL
    field public static final int PROCESS_CAPABILITY_ALL_IMPLICIT = 6; // 0x6
    field public static final int PROCESS_CAPABILITY_NETWORK = 8; // 0x8
    field @Deprecated public static final int PROCESS_CAPABILITY_NETWORK = 8; // 0x8
    field public static final int PROCESS_CAPABILITY_POWER_RESTRICTED_NETWORK = 8; // 0x8
    field public static final int PROCESS_STATE_FOREGROUND_SERVICE = 4; // 0x4
    field public static final int PROCESS_STATE_TOP = 2; // 0x2
    field public static final int STOP_USER_ON_SWITCH_DEFAULT = -1; // 0xffffffff
+10 −2
Original line number Diff line number Diff line
@@ -751,9 +751,17 @@ public class ActivityManager {
    @SystemApi
    public static final int PROCESS_CAPABILITY_FOREGROUND_MICROPHONE = 1 << 2;

    /** @hide Process can access network despite any power saving resrictions */
    /** @hide Process can access network despite any power saving restrictions */
    @TestApi
    public static final int PROCESS_CAPABILITY_NETWORK = 1 << 3;
    public static final int PROCESS_CAPABILITY_POWER_RESTRICTED_NETWORK = 1 << 3;
    /**
     * @hide
     * @deprecated Use {@link #PROCESS_CAPABILITY_POWER_RESTRICTED_NETWORK} instead.
     */
    @TestApi
    @Deprecated
    public static final int PROCESS_CAPABILITY_NETWORK =
            PROCESS_CAPABILITY_POWER_RESTRICTED_NETWORK;

    /**
     * Flag used to indicate whether an app is allowed to start a foreground service from the