From b04611c3be4f1f2a073b22a3eaa95be1aea02f09 Mon Sep 17 00:00:00 2001 From: OxygenCobalt Date: Sun, 23 Jan 2022 11:04:27 -0700 Subject: [PATCH] playback: fix media intent detection [#62] Some apps query for media apps by checking for apps that have a BroadcastReciever that handles the ACTION_MEDIA_BUTTON intent. However, Auxio does not have a custom media button reciever, instead relying on the androidx media button reciever. This resulted in Auxio not showing up in apps like GadgetBridge. Fix this by exposing the androidx media button reciever in the manifest, which allows this app to be detected. --- app/src/main/AndroidManifest.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index cdced1712..a6a59f074 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -56,6 +56,18 @@ android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher" /> + + + + + + +