Implement the audio_service media-browser hooks so Android Auto (and other
media browsers) can browse the library and start playback:
- getChildren exposes Liked Songs, a "Browse" folder (the home / "Made for
you" hub — including Discover Weekly, fetched via browse.sectionItems since
the section preview omits it), and the user's saved playlists.
- Collections are browsable into their track list with a "Play all" entry;
tapping a track plays the collection from that point.
- playFromMediaId resolves the selection and plays through the existing
AudioPlayerNotifier.load pipeline.
- Add an explicit shuffle MediaControl + custom action (Android Auto does not
reliably render a toggle from the standard ACTION_SET_SHUFFLE_MODE alone).
- Retry auth-sensitive requests: the stored token is often stale on cold
start and the first call 401s before the plugin refreshes it.
- Browse-item artwork uses http(s) URLs only — the media-browser process
cannot read app-private file:// paths.
The MediaBrowserService and automotive_app_desc.xml were already declared in
the manifest, so no native changes are required.
* chore: replace windows app icon by a higher resolution (#2838)
Co-authored-by: Kingkor Roy Tirtho <krtirtho@gmail.com>
* fix: upgrade NewPipeExtractor to latest version fixinng playback issue
* cd: disable free disk space step
* chore: upgrade pubspec
* fix(android): build not working due to
* chore: remove package assets folder
* fix: lyrics not working
* chore: generate changelog
---------
Co-authored-by: Tobse <1190109+TobseF@users.noreply.github.com>
* feat(queue): add multi-select and bulk actions to queue
- Add selection mode to PlayerQueue with long-press to select
- Disable inner navigation (title/artist) when selecting via TrackTile
- Show checkboxes only in selection mode
- Add selection AppBar behavior and bottom-sheet menu with: Select all, Add to playlist, Remove selected, Cancel
- Reuse existing PlaylistAddTrackDialog for bulk add
- Hide drag handle while in selection mode
Closes: # (implement multi-select queue feature)
* chore: update .gitignore to include .vscode and modify signing configurations back to default in build.gradle
* chore: add VS Code configuration files
* chore: update dependencies in pubspec.lock
* chore: update pubspec.lock to reflect dependency changes and version updates
* chore: fix replace material widgets with shadcn widgets
---------
Co-authored-by: Kingkor Roy Tirtho <krtirtho@gmail.com>