| java.lang.Object | |
| ↳ | com.google.firebase.messaging.Aps.Builder |
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Aps | build() | ||||||||||
| Aps.Builder |
setAlert(ApsAlert alert)
Sets the alert as a dictionary.
| ||||||||||
| Aps.Builder |
setAlert(String alert)
Sets the alert field as a string.
| ||||||||||
| Aps.Builder |
setBadge(int badge)
Sets the badge to be displayed with the message.
| ||||||||||
| Aps.Builder |
setCategory(String category)
Sets the notification type.
| ||||||||||
| Aps.Builder |
setContentAvailable(boolean contentAvailable)
Specifies whether to configure a background update notification.
| ||||||||||
| Aps.Builder |
setSound(String sound)
Sets the sound to be played with the message.
| ||||||||||
| Aps.Builder |
setThreadId(String threadId)
Sets an app-specific identifier for grouping notifications.
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Sets the alert field as a string.
| alert | A string alert. |
|---|
Sets the badge to be displayed with the message. Set to 0 to remove the badge. When not invoked, the badge will remain unchanged.
| badge | An integer representing the badge. |
|---|
Sets the notification type.
| category | A string identifier. |
|---|
Specifies whether to configure a background update notification.
| contentAvailable | True to perform a background update. |
|---|
Sets the sound to be played with the message.
| sound | Sound file name or "default". |
|---|
Sets an app-specific identifier for grouping notifications.
| threadId | A string identifier. |
|---|