You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Send Notifications with Pop-up, Sound & Vibration, or Silent Mode
286
-
287
-
If you want to send notifications as a pop-up, with sound and vibration, or silently with vibration only, you can set a category when creating a push notification.
288
-
289
-
By default, if you create a push notification without selecting a category, it will be displayed in the status bar with sound.
290
-
291
-
You can also set a default category in the `General Settings` to avoid selecting a category manually every time you create a push notification.
You can control whether a notification displays a badge by assigning a category when creating the push notification.
308
-
309
-
When setting up a notification category, you can choose to Enable or Disable badge display. This determines whether the app icon badge count or dot will be shown for notifications in that category.
310
-
311
-
By default, if you create a push notification without selecting a category, the badge will be displayed.
Copy file name to clipboardExpand all lines: docs/sdks/android/setup.md
+57-1Lines changed: 57 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ You can find the newest sdk version number here [Android SDK](https://github.com
21
21
```groovy
22
22
dependencies {
23
23
// ...
24
-
implementation 'com.cleverpush:cleverpush:1.35.3'
24
+
implementation 'com.cleverpush:cleverpush:1.35.4'
25
25
}
26
26
```
27
27
@@ -315,6 +315,62 @@ You can set large icon from Create new -> Icon.
315
315
316
316
If you do not set a large icon, channel icon from dashborad will be used instead, if there is no channel icon set in CleverPush dashboard then it will not display large icon.
317
317
318
+
## Notification Category (Channel)
319
+
320
+
By default, if you send a push notification without selecting a category, it will be delivered via the SDK's default channel, using IMPORTANCE_DEFAULT and the device's default notification sound.
321
+
322
+
Using notification categories, you can create custom notification channels with personalized settings—such as importance level, sound, and vibration behavior, etc.
323
+
324
+
### Send Notifications with Pop-up, Sound & Vibration, or Silent Mode
325
+
326
+
If you want to send notifications as a pop-up, with sound and vibration, or silently with vibration only, you can set a category when creating a push notification.
327
+
328
+
By default, if you create a push notification without selecting a category, it will be displayed in the status bar with sound.
329
+
330
+
You can also set a default category in the `General Settings` to avoid selecting a category manually every time you create a push notification.
You can control whether a notification displays a badge by assigning a category when creating the push notification.
347
+
348
+
When setting up a notification category, you can choose to Enable or Disable badge display. This determines whether the app icon badge count or dot will be shown for notifications in that category.
349
+
350
+
By default, if you create a push notification without selecting a category, the badge will be displayed.
0 commit comments