함께 공부하는 Flutter

[Flutter] audioplayers 패키지 이용할 때 소리가 중간에 끊긴다면?

냥냥박사에디 2024. 8. 4. 22:54
반응형

백그라운드를 설정해주셔야 합니다. 안그러면 몇 초 정도만 지나면 소리가 끊겨요.

 

[iOS] Background Audio
There is a required configuration to enable audio do be playing on the background; add the following lines to your info.plist:

 <key>UIBackgroundModes</key>
 <array>
  <string>audio</string>
 </array>


Or on XCode you can add it as a capability; more details here.

반응형