Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UIApplicationExitsOnSuspend key issue. How do I fix it?

Tags:

xcode

ios

When I archive and publish my app to the App Store, I have the following error:

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.

My information file

like image 482
Максим Сикайло Avatar asked Jun 07 '19 12:06

Максим Сикайло


1 Answers

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.

like image 127
rmaddy Avatar answered Sep 17 '22 12:09

rmaddy