I\'m trying to submit my app to TestFlight, but I keep getting this error.
and this is what I have in my info.plist
How do I fix
Add this in your info.plist and then resubmit your app
<key>BGTaskSchedulerPermittedIdentifiers</key>
<array>
<string>com.yourCompanyName.appName</string>
</array>
As it says you need to add "BGTaskSchedulerPermittedIdentifiers" to your info.plist. You have turned on background task capabilities for your app but did not add corresponding identifiers.
In the end, it will look like this,
For more info, you can refer to this Apple doc.