Skip to content

Commit 38e9484

Browse files
authored
Update README.md
1 parent 96a7234 commit 38e9484

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,17 @@ Canceling the latest added worker in the queue:</br>
3636
Canceling all workers:</br>
3737
<pre>NotificationMan
3838
.coolDownAllFires(context)</pre>
39+
40+
You can also set your custom notification channel configuration. This is optional to set:</br>
41+
<pre>NotificationManChannelConfig
42+
.Builder()
43+
.setChannelId(id = "notification-man-channel")
44+
.setChannelName(name = "custom-channel-name")
45+
.setImportanceLevel(level = NotificationImportanceLevel.HIGH)
46+
.setShowBadge(shouldShow = true)
47+
.build()</pre>
48+
49+
<b>***One important note, with Android13, make sure that your app has the post notification permission to have full functionality of the app. You can check example of requesting the permission in this project.***</b>
3950

4051

4152

0 commit comments

Comments
 (0)