playback: export playback reciever
Completely misunderstood how this would affect the widget/notification on Android 14. Apparently it just blocks all intents, even if they are tangentially from the app. Resolves #598.
This commit is contained in:
parent
4eacb65aff
commit
d51da1b4bf
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ class PlaybackService :
|
||||||
}
|
}
|
||||||
|
|
||||||
ContextCompat.registerReceiver(
|
ContextCompat.registerReceiver(
|
||||||
this, systemReceiver, intentFilter, ContextCompat.RECEIVER_NOT_EXPORTED)
|
this, systemReceiver, intentFilter, ContextCompat.RECEIVER_EXPORTED)
|
||||||
|
|
||||||
logD("Service created")
|
logD("Service created")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue