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

Commit 8c21d074 authored by Suprabh Shukla's avatar Suprabh Shukla Committed by android-build-merger
Browse files

Merge "Fix the notification issue shown on startForeground" am: ea86140b am:...

Merge "Fix the notification issue shown on startForeground" am: ea86140b am: 3b498d1c am: fd0239aa
am: d5bf76fe

Change-Id: Ib3718fc61d476363ed4773588d391bd55b0779e7
parents 61c45cbd d5bf76fe
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -495,8 +495,9 @@ final class ServiceRecord extends Binder {
                                        Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
                                runningIntent.setData(Uri.fromParts("package",
                                        appInfo.packageName, null));
                                PendingIntent pi = PendingIntent.getActivity(ams.mContext, 0,
                                        runningIntent, PendingIntent.FLAG_UPDATE_CURRENT);
                                PendingIntent pi = PendingIntent.getActivityAsUser(ams.mContext, 0,
                                        runningIntent, PendingIntent.FLAG_UPDATE_CURRENT, null,
                                        UserHandle.of(userId));
                                notiBuilder.setColor(ams.mContext.getColor(
                                        com.android.internal
                                                .R.color.system_notification_accent_color));