ITMS-90339: Deprecated Info.plist Key - The Info.plist contains a key 'UIApplicationExitsOnSuspend'

原因

  • 新版的ios废弃了UIApplicationExitsOnSuspend
  • unity使用这个属性来定义程序进到后台的行为,即按下home键的app的行为

解决方式

There should not be any problem, unless you have a custom behavior in background.
The default behavior for an iOS 12/11 app is to run in background if the 'UIApplicationExitsOnSuspend' key is not specified.
  • 如果没有自定义app回到后台的行为,删掉这个属性即可

参考

  • https://issuetracker.unity3d.com/issues/ios-apps-with-uiapplicationexitsonsuspend-in-info-dot-plist-failing-to-pass-apple-store-validation
  • https://forum.unity.com/threads/the-info-plist-contains-a-key-uiapplicationexitsonsuspend.689200/
  • https://docs.unity3d.com/Manual/class-PlayerSettingsiOS.html

你可能感兴趣的:(报错集)