This commit is contained in:
William Moore 2023-06-15 09:23:43 -05:00
parent c5a063a19a
commit 5458f37dee
1 changed files with 3 additions and 1 deletions

View File

@ -102,6 +102,7 @@ class MyFirebaseMessagingService : FirebaseMessagingService() {
.setContentTitle(getString(R.string.fcm_message))
.setContentText(messageBody)
.setAutoCancel(true)
.setPriority(NotificationCompat.PRIORITY_MAX)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent)
@ -111,9 +112,10 @@ class MyFirebaseMessagingService : FirebaseMessagingService() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
val channel = NotificationChannel(
channelId,
"Channel human readable title",
"TeaSense",
NotificationManager.IMPORTANCE_DEFAULT,
)
notificationManager.createNotificationChannel(channel)
}