I am making Music app in Flutter. For that, I am using audio service package. Package displays song artwork for my phone, but It does not display artwork for Android Auto.I am using below snippet for broadcasting media item.
MediaItem.add(
id:song.id,
title:song.title,
artUri:Uri.file("/data/user/0/my package name/cache/8744.png")
);
Is there any kind of permission needed for Android Auto?
I also tried the android content uri for the same. However, my issue has not been resolved.