Enable or Disable Lockscreen art in Audio_Service Flutter

Viewed 276

This question is specifically related to the Audio Service package in flutter. Till v0.17.0 there was a lock screen art but it's not there in v0.18.0. So, I just wanted to know if there's any specific method by which I can enable as well as disable it. I checked and wasn't able to find any such input parameter for that.

1 Answers

As of Android 11, Google removed support for displaying the album art as the lock screen background, and this feature is also not available in audio_service as of 0.18.0. (Although it could theoretically be supported on older versions of Android, it's probably for the best that it's not, since that feature required holding and transporting high resolution bitmaps in Android's media session which was not efficient.)

Related