In my project, I have implemented a RemoteController to show the album art, track info, previous, play/pause and nextbutton of the currently playing media. However, this only works in Android 4.4+, since the class RemoteController was added in API 19.
I know the information about the currently playing media is sent using a RemoteControlClient. This class was added in API 14.
Since RemoteControlClient existed long before RemoteController, there must be a way to receive the information from RemoteControlClient on versions below KitKat, I presume? I just can't find how.
I know you can get track information from MediaStore, but that is not what I'm looking for.
IN SHORT: How do I interact with RemoteControlClient on versions below KitKat?
Any help is appreciated!