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

Commit b73787e9 authored by Bernardo Rufino's avatar Bernardo Rufino
Browse files

Remove trampoline toast

Bug: 161957908
Test: Trigger trampoline on app w/ targetSdk S, observe no toast.
Change-Id: I533ebc578f1221af3f0efdda2f9eb2b5cb30e658
parent 1dfd9484
Loading
Loading
Loading
Loading
+0 −16
Original line number Diff line number Diff line
@@ -11039,8 +11039,6 @@ public class NotificationManagerService extends SystemService {
            String logcatMessage =
                    "Indirect notification activity start (trampoline) from " + packageName;
            if (blockTrampoline(uid)) {
                // Post toast() call to mHandler to offload PM lookup from the activity start path
                mHandler.post(() -> toast(packageName, uid));
                Slog.e(TAG, logcatMessage + " blocked");
                return false;
            } else {
@@ -11064,19 +11062,5 @@ public class NotificationManagerService extends SystemService {
            return tokens.contains(ALLOWLIST_TOKEN)
                    && !CompatChanges.isChangeEnabled(NOTIFICATION_TRAMPOLINE_BLOCK, uid);
        }

        private void toast(String packageName, int uid) {
            final CharSequence label;
            try {
                label = mPackageManagerClient.getApplicationLabel(
                        mPackageManager.getApplicationInfo(packageName, 0,
                                UserHandle.getUserId(uid)));
            } catch (RemoteException e) {
                Slog.e(TAG, "Unexpected exception obtaining app label from PackageManager", e);
                return;
            }
            mUiHandler.post(() -> Toast.makeText(getUiContext(),
                    label + " launch blocked\ng.co/dev/trampolines", Toast.LENGTH_LONG).show());
        }
    }
}