We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee8c152 commit 2983f45Copy full SHA for 2983f45
mobile/android/app/src/main/java/com/robosats/NotificationsService.java
@@ -114,7 +114,10 @@ private Notification buildServiceNotification() {
114
.setContentTitle("Tor Notifications")
115
.setContentText("The app will run on the background to send you notifications about your orders.")
116
.setSmallIcon(R.mipmap.ic_icon)
117
- .setTicker("Robosats");
+ .setTicker("Robosats")
118
+ .setPriority(NotificationCompat.PRIORITY_MIN)
119
+ .setOngoing(true)
120
+ .setAutoCancel(false);
121
122
return builder.build();
123
}
0 commit comments