Bixby Developer Center

Guides

6831 (Audio Control Album Art Size/URL)

We've deprecated the use of album-art-size and album-art-url in the audio-control Views component. Instead, use the album-art key and its child keys to specify the metadata for album art. You can additionally add an on-click intent or URL within the new album-art key.

Old:

...
audio-control {
album-art-url (https://example.com/meow.jpg)
album-art-size (Large)
artist (Cool Cat)
title (Cat-ch Phrase)
skip-track-button-visibility (AlwaysEnabled)
}
...

New:

...
audio-control {
album-art {
url (https://example.com/meow.jpg)
size (Large)
on-click {
intent {
goal: GetAlbumInfo
}
}
}
artist (Cool Cat)
title (Cat-ch Phrase)
skip-track-button-visibility (AlwaysEnabled)
}
...

Deprecation Stages

Learn more about the deprecation stages.

  • Stage 1: R22I
  • Stage 2: R22L
  • End of Life: None