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

Commit 021dd12e authored by /e/ robot's avatar /e/ robot
Browse files

Merge remote-tracking branch 'origin/lineage-18.1' into v1-r

parents 5dff1cef c3571dcf
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -3933,6 +3933,9 @@ public class ActivityManager {
     * processes to reclaim memory; the system will take care of restarting
     * processes to reclaim memory; the system will take care of restarting
     * these processes in the future as needed.
     * these processes in the future as needed.
     *
     *
     * <p class="note">Third party applications can only use this API to kill their own processes.
     * </p>
     *
     * @param packageName The name of the package whose processes are to
     * @param packageName The name of the package whose processes are to
     * be killed.
     * be killed.
     */
     */
+27 −6
Original line number Original line Diff line number Diff line
@@ -2476,6 +2476,14 @@ public class Notification implements Parcelable
        }
        }
    }
    }


    private static void visitIconUri(@NonNull Consumer<Uri> visitor, @Nullable Icon icon) {
        if (icon == null) return;
        final int iconType = icon.getType();
        if (iconType == TYPE_URI || iconType == TYPE_URI_ADAPTIVE_BITMAP) {
            visitor.accept(icon.getUri());
        }
    }

    /**
    /**
     * Note all {@link Uri} that are referenced internally, with the expectation
     * Note all {@link Uri} that are referenced internally, with the expectation
     * that Uri permission grants will need to be issued to ensure the recipient
     * that Uri permission grants will need to be issued to ensure the recipient
@@ -2484,6 +2492,10 @@ public class Notification implements Parcelable
     * @hide
     * @hide
     */
     */
    public void visitUris(@NonNull Consumer<Uri> visitor) {
    public void visitUris(@NonNull Consumer<Uri> visitor) {
        if (publicVersion != null) {
            publicVersion.visitUris(visitor);
        }

        visitor.accept(sound);
        visitor.accept(sound);


        if (tickerView != null) tickerView.visitUris(visitor);
        if (tickerView != null) tickerView.visitUris(visitor);
@@ -2491,7 +2503,18 @@ public class Notification implements Parcelable
        if (bigContentView != null) bigContentView.visitUris(visitor);
        if (bigContentView != null) bigContentView.visitUris(visitor);
        if (headsUpContentView != null) headsUpContentView.visitUris(visitor);
        if (headsUpContentView != null) headsUpContentView.visitUris(visitor);


        visitIconUri(visitor, mSmallIcon);
        visitIconUri(visitor, mLargeIcon);

        if (actions != null) {
            for (Action action : actions) {
                visitIconUri(visitor, action.getIcon());
            }
        }

        if (extras != null) {
        if (extras != null) {
            visitIconUri(visitor, extras.getParcelable(EXTRA_LARGE_ICON_BIG));

            visitor.accept(extras.getParcelable(EXTRA_AUDIO_CONTENTS_URI));
            visitor.accept(extras.getParcelable(EXTRA_AUDIO_CONTENTS_URI));
            if (extras.containsKey(EXTRA_BACKGROUND_IMAGE_URI)) {
            if (extras.containsKey(EXTRA_BACKGROUND_IMAGE_URI)) {
                visitor.accept(Uri.parse(extras.getString(EXTRA_BACKGROUND_IMAGE_URI)));
                visitor.accept(Uri.parse(extras.getString(EXTRA_BACKGROUND_IMAGE_URI)));
@@ -2549,14 +2572,12 @@ public class Notification implements Parcelable
                    }
                    }
                }
                }
            }
            }
        }


        if (mBubbleMetadata != null && mBubbleMetadata.getIcon() != null) {
            visitIconUri(visitor, extras.getParcelable(EXTRA_CONVERSATION_ICON));
            final Icon icon = mBubbleMetadata.getIcon();
            final int iconType = icon.getType();
            if (iconType == TYPE_URI_ADAPTIVE_BITMAP || iconType == TYPE_URI) {
                visitor.accept(icon.getUri());
        }
        }

        if (mBubbleMetadata != null) {
            visitIconUri(visitor, mBubbleMetadata.getIcon());
        }
        }
    }
    }


+2 −1
Original line number Original line Diff line number Diff line
@@ -9907,7 +9907,8 @@ public class DevicePolicyManager {
    /**
    /**
     * Called by a device admin to set the long support message. This will be displayed to the user
     * Called by a device admin to set the long support message. This will be displayed to the user
     * in the device administators settings screen.
     * in the device administrators settings screen. If the message is longer than 20000 characters
     * it may be truncated.
     * <p>
     * <p>
     * If the long support message needs to be localized, it is the responsibility of the
     * If the long support message needs to be localized, it is the responsibility of the
     * {@link DeviceAdminReceiver} to listen to the {@link Intent#ACTION_LOCALE_CHANGED} broadcast
     * {@link DeviceAdminReceiver} to listen to the {@link Intent#ACTION_LOCALE_CHANGED} broadcast
+5 −0
Original line number Original line Diff line number Diff line
@@ -1680,6 +1680,11 @@ public class RemoteViews implements Parcelable, Filter {
        public int getActionTag() {
        public int getActionTag() {
            return VIEW_GROUP_ACTION_ADD_TAG;
            return VIEW_GROUP_ACTION_ADD_TAG;
        }
        }

        @Override
        public final void visitUris(@NonNull Consumer<Uri> visitor) {
            mNestedViews.visitUris(visitor);
        }
    }
    }


    /**
    /**
+5 −1
Original line number Original line Diff line number Diff line
@@ -2550,6 +2550,10 @@


    <!-- Allows an application to call
    <!-- Allows an application to call
         {@link android.app.ActivityManager#killBackgroundProcesses}.
         {@link android.app.ActivityManager#killBackgroundProcesses}.

         <p class="note">Third party applications can only use this API to kill their own
         processes.</p>

         <p>Protection level: normal
         <p>Protection level: normal
    -->
    -->
    <permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"
    <permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"
Loading