bypass112

Results 13 comments of bypass112

Hello, thanks for the quick reply, I'll provide a minimal repro project in the next hours. As a sidenote how the code is implemented: 1. There is a just_audio icyMetadataStream...

Hello, I've published a repo: https://github.com/bypass112/audio_service_bt It's modified from the example https://github.com/ryanheise/audio_service/tree/minor/audio_service/example In the main.dart it has a method: _autoIncrementTitleName that generates new titles like: title_1, title_2, title_3 and so...

Yes, Spotify seems to had this problem: https://community.spotify.com/t5/Ongoing-Issues/Wrong-metadata-displayed-on-car-radio-via-Bluetooth/idi-p/5154639#comments But I don't think the problem is on the Android Auto stack, but on the Bluetooth stack of the phone. I tested...

I found another workaround for this bug: I'll just use a Queue backTree = Queue(); to remember the tree history and everytime I'll navigate to another screen I'll just use...

I'm sorry the code is a bit more complicated behind the scenes and I haven't modified the package at all, it is just in app, but I'll try my best...

Hi please make sure you have "Allow Apps to Request to Track" enabled on device and make sure the app is properly mounted on the native side. I would recommend...

Hello, from what I've seen Android side is using Exoplayer2, but from the [latest release](https://github.com/google/ExoPlayer/releases) it seems that the project is now deprecated and suggest migration to androidx.media3. Will this...

Thank you for the update and the info! My bad about mixing audio_service and just_audio. Untill the project is migrated to media3, should `def exoplayer_version = "2.18.7"` be redefined to...

It also seems that whatever the background method used for the `HomeWidget.registerInteractivityCallback` call, you can't add any await in it. For example any code added after an `await Future.delayed(Duration(seconds: 3));`...

As a temporary solution I just moved the async tasks from Dart side directly into iOS Swift. Doing this seems to properly fetch any data from the **await** calls. Generally...