andand 어플리케이션과 함께 Firebase 메시징을 사용하고 있습니다. Firebase를 사용하여 푸시 알림을 보내고 있습니다. 기본 알림 사운드를 맞춤 알림 사운드로 변경하고 싶습니다. 내가 어떻게 해 ? 위의 코드FCM 맞춤 알림 소리
Uri defaultSoundUri =
RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setLargeIcon(image)/*Notification icon image*/
.setSmallIcon(R.mipmap.ic_notif)
.setContentTitle(title)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent)
.setCustomBigContentView(remoteViews)
.setStyle(new NotificationCompat.BigPictureStyle().bigPicture(image))
;
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(Integer.parseInt(id) /* ID of notification */, notificationBuilder.build());
}
[this] (https://www.myflashlabs.com/custom-icon-sound-fcm-air-native-extension/) 문서는 매우 유용합니다. 사용자 정의 사운드를 처리하는 방법을 설명합니다. –