mirror of
https://github.com/SimpleMobileTools/Simple-Clock.git
synced 2025-04-05 14:21:03 +02:00
use a different channel id for every sound uri
This commit is contained in:
parent
6ae89328a2
commit
ac95ff8adc
@ -248,7 +248,7 @@ fun Context.getTimerNotification(pendingIntent: PendingIntent, addDeleteIntent:
|
|||||||
grantReadUriPermission(soundUri)
|
grantReadUriPermission(soundUri)
|
||||||
}
|
}
|
||||||
|
|
||||||
val channelId = "my_timer_channel"
|
val channelId = "simple_timer_channel_$soundUri"
|
||||||
if (isOreoPlus()) {
|
if (isOreoPlus()) {
|
||||||
val audioAttributes = AudioAttributes.Builder()
|
val audioAttributes = AudioAttributes.Builder()
|
||||||
.setUsage(AudioAttributes.USAGE_NOTIFICATION)
|
.setUsage(AudioAttributes.USAGE_NOTIFICATION)
|
||||||
@ -320,7 +320,7 @@ fun Context.getAlarmNotification(pendingIntent: PendingIntent, alarm: Alarm, add
|
|||||||
grantReadUriPermission(soundUri)
|
grantReadUriPermission(soundUri)
|
||||||
}
|
}
|
||||||
|
|
||||||
val channelId = "my_alarm_channel"
|
val channelId = "simple_alarm_channel_$soundUri"
|
||||||
val label = if (alarm.label.isNotEmpty()) alarm.label else getString(R.string.alarm)
|
val label = if (alarm.label.isNotEmpty()) alarm.label else getString(R.string.alarm)
|
||||||
if (isOreoPlus()) {
|
if (isOreoPlus()) {
|
||||||
val audioAttributes = AudioAttributes.Builder()
|
val audioAttributes = AudioAttributes.Builder()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user