Reputation: 1
My media app using Exoplayer's mediasessionconnector to send the mediasession metadata to the Car media App. Car media app supposed to show the title, album and artist of the current track. But it just shows the title with album and artist left blank.
The problem is TimelineQueueNavigator uses MediaDescriptionCompat which takes title and descriptions. There is no explicitly way to set artist and album. How to hanlde this situation?
Upvotes: 0
Views: 776
Reputation: 1
As per DefalutMetadataProvider Album and Artists needs to be bundled in MediaDescriptionCompat. Then it worked
Upvotes: 0