How to change requirements for Minimum version of iOS in AppStore

First of all, you need to add these two lines into plist not Entitlements.

  1. Find info.plist for iOS in Builtins folder
  2. Copy/paste it in your project (anywhere outside of Builtins)
  3. Change link to your plist in game.project

After these steps, you will be able to change plist and add your changes there.

Now about your errors/warnings (actually there is enough information about “what to do” ^____^ ):

Just turn off 32-bit architecture when you bundle iOS (the reason is in message).

Add the following tag into your plist:

<key>UIRequiresFullScreen</key>
<true/>
3 Likes