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

Commit a2036a21 authored by Eric Schmidt's avatar Eric Schmidt Committed by android-build-merger
Browse files

docs: Fixed code snippet in notify-user/navigation.html am: 32cc6b7f am: c89c8c3e

am: 707678d8

Change-Id: I8a386fcf36730f08367631bd0c1cba6d2731f09f
parents 121a2384 707678d8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -205,7 +205,7 @@ Intent notifyIntent =
notifyIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
        Intent.FLAG_ACTIVITY_CLEAR_TASK);
// Creates the PendingIntent
PendingIntent notifyIntent =
PendingIntent pendingIntent =
        PendingIntent.getActivity(
        this,
        0,
@@ -214,7 +214,7 @@ PendingIntent notifyIntent =
);

// Puts the PendingIntent into the notification builder
builder.setContentIntent(notifyIntent);
builder.setContentIntent(pendingIntent);
// Notifications are issued by sending them to the
// NotificationManager system service.
NotificationManager mNotificationManager =