feat: add background modes for audio processing in iOS

- Updated Info.plist to include background modes for audio and processing, enabling the app to continue audio playback and processing tasks while in the background.
This commit is contained in:
cogwheel0
2025-10-08 22:34:14 +05:30
parent ea79a193be
commit 7e478a5d55

View File

@@ -86,5 +86,11 @@
</array>
</dict>
</array>
<!-- Background Modes -->
<key>UIBackgroundModes</key>
<array>
<string>audio</string>
<string>processing</string>
</array>
</dict>
</plist>