iOS permission issue

I'm encountering an issue while trying to set the <key>UIBackgroundModes</key> permission in FlutterFlow. Specifically, I need to include the following modes: processing, remote-notification, and voip. However, I'm unsure how to properly configure this permission within FlutterFlow. Can anyone provide guidance on how to accomplish this?

link of package :
-- https://pub.dev/packages/flutter_callkeep

I need to add below permission on iOS

<key>UIBackgroundModes</key>
<array>
<string>processing</string>
<string>remote-notification</string>
<string>voip</string>
</array>

7
2 replies