Skip to content

Commit

Permalink
Notification config
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaSat committed Jul 13, 2024
1 parent ee8c152 commit 2983f45
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ private Notification buildServiceNotification() {
.setContentTitle("Tor Notifications")
.setContentText("The app will run on the background to send you notifications about your orders.")
.setSmallIcon(R.mipmap.ic_icon)
.setTicker("Robosats");
.setTicker("Robosats")
.setPriority(NotificationCompat.PRIORITY_MIN)
.setOngoing(true)
.setAutoCancel(false);

return builder.build();
}
Expand Down

0 comments on commit 2983f45

Please sign in to comment.