私のandriodアプリケーションとの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/)の記事は非常に便利です。カスタムサウンドをどのように処理できるかを説明しています。 –