Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Parse/src/main/java/com/parse/ParsePushBroadcastReceiver.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,10 @@
* {@link #onPushOpen(Context, Intent)}, or {@link #onPushDismiss(Context, Intent)}.
* To make minor changes to the appearance of a notification, override
* {@link #getSmallIconId(Context, Intent)} or {@link #getLargeIcon(Context, Intent)}. To completely
* change the Notification generated, override {@link #getNotification(Context, Intent)}. To change
* the Activity launched when a user opens a Notification, override
* change the Notification generated, override {@link #getNotification(Context, Intent)}. To
* change the NotificationChannel generated, override {@link #getNotificationChannel(Context, Intent)}. To
* change how the NotificationChannel is created, override {@link #createNotificationChannel(Context, NotificationChannel)}.
* To change the Activity launched when a user opens a Notification, override
* {@link #getActivity(Context, Intent)}.
*/
// Hack note: Javadoc smashes the last two paragraphs together without the <p> tags.
Expand Down