UIApplicationExitsOnSuspend warning in Transporter

When submitted app got error like that. How do we prevent apps from being killed when go into suspend if this will not be accepted anymore by apple?

https://forums.coronalabs.com/topic/75711-uiapplicationexitsonsuspend-warning-in-application-loader/

no, that is not the problem. This parameter is no more supported by iOS. What to do now?

Can you share your build.settings?
 

If we need to remove this line, what can we replace it with to keep it from exiting? Or does apple no longer support not allowing an app to exit on suspend?

We’ve been setting it to UIApplicationExitsOnSuspend = false

Apple has defaulted to false for a long time (since maybe iOS 8). So they are removing this key since it’s no longer needed. There is a term in the computer industry called “Tech Debt” or technical debt and having legacy code sitting around not doing thing adds to your tech debt and it’s important to purge all of this old code to keep the good code clean.

Rob