"Missing Info.plist value. The Info.plist key 'BGTaskSchedulerPermittedIdentifiers' must contain a list of identifiers used to submit and handle tasks when 'UIBackgroundModes' has a value of 'processing'

Aayush Rawat 0 Reputation points
2025-03-19T06:04:54.2266667+00:00

I am trying to upload my maui ios app on transporter and getting this error:

what i have tried so far is

<key>BGTaskSchedulerPermittedIdentifiers</key>

<array>

<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>

</array>

and

<key>BGTaskSchedulerPermittedIdentifiers</key> <array> <string>com.yourcompany.yourapp.refresh</string> <string>com.yourcompany.yourapp.process</string> </array>

moreover i have this permission for push notification

<key>UIBackgroundModes</key>
```<array>

<string>fetch</string>

<string>remote-notification</string>

<string>processing</string>


Developer technologies | .NET | .NET MAUI
{count} votes

1 answer

Sort by: Most helpful
  1. Wenyan Zhang (Shanghai Wicresoft Co,.Ltd.) 36,436 Reputation points Microsoft External Staff
    2025-03-19T08:14:51.28+00:00

    Hello,

    The permission you added is to fetch the data under background mode. Please replace it with the following:

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

    And then, you could also remove the BGTaskSchedulerPermittedIdentifiers key.

    Best Regards,

    Wenyan Zhang


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.