Hello, I am using Juce version 6.0.8 to create a dynamic library for playing MIDI audio, which I have integrated into my iOS project. I am currently facing an issue where, when my iOS device connects or disconnects Bluetooth headphones, Juce automatically resumes playback of audio that has already been paused. I checked the Juce source code and found no API to disable this automatic playback. It works fine on Android without this issue, but it only occurs on iOS.
Do you have a listener set up on AudioDeviceManager to receive ChangeBroadcaster messages? The idea would be, you manage your own pausing of playback when these messages arrive, according to your needs.