相关文章推荐
Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

WARNING ITMS-90339: "Deprecated Info.plist Key. The Info.plist contains a key 'UIApplicationExitsOnSuspend' in bundle ar [ar.app] that will soon be unsupported. Remove the key, rebuild your app and resubmit."

But I don't have that key.

You do have that key. It's labeled as "Application does not run in background". Remove that key from Info.plist.

Here's a little trick. Select the Info.plist. Then right-click on any key or value and select "Show Raw Keys/Values". Now you will see UIApplicationExitsOnSuspend .

Deprecated - The system now automatically suspends apps leaving the foreground when they don’t require background execution. For more information, see About the Background Execution Sequence. Utopia Jun 3, 2020 at 15:05

As @maddy suggested You need to remove "Application does not run in background" key in info.plist.

If you want to make sure that your app runs in background, you can use UIBackgroundModes key in Info.plist, you can refer to below link for examples: https://stackoverflow.com/a/3413828/4525717 , if this key is included, Apple would need valid justification for App store Approval process.

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question . Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers .