ryanheise

Results 1670 comments of ryanheise

I can't provide advice on how to use the AV foundation libraries, but I can only say that audio_session exposes the underlying API to Flutter for you to use as...

Does this also happen on the official example in this repository?

How about on an actual device? I want to rule out perhaps an issue with your development environment.

flutter doctor?

That is not necessary, because you said the official example already reproduces the bug. I have the official example, I can just use that without using your code. Still, I...

Thanks, I'll check later whether my versions match yours.

This plugin exposes the AVAudioSession API on iOS and the AudioManager API on Android (via the class `AndroidAudioManager`), which allow you to route audio. Since it's platform specific, I would...

Casting is another matter altogether, but you can take a look at [audio_cast](https://github.com/peterscodee/audio_cast) for the Android side of things. As for the traditional audio devices, there are various answers on...

I think there are several answers on StackOverflow for how to do this and I would encourage those interested in this feature to first do a search on StackOverflow. Please...

Hi @JDNew , `setActive` wraps `AVAudioSession.setActive` on Apple, and `AudioManager.requestAudioFocus` on Android. They ultimately do the same thing which is to handle interruptions to your own audio session. If you...