mikeperri / flutter_sequencer

A Flutter plugin for music sequencing.
Other
90 stars 38 forks source link

On iOS it only works with silent mode off #37

Open luis951 opened 2 years ago

luis951 commented 2 years ago

Are there any settings to get the audio to work with the iPhone silent mode on?

iksent commented 1 year ago

Same problem. Has anyone solved this issue?

LeventeAsztalos commented 1 year ago

I solved this with the help of audio_session.

  final session = await AudioSession.instance;
  await session.configure(AudioSessionConfiguration.music());