First of all, you need to add these two lines into plist not Entitlements.
- Find
info.plist for iOS in Builtins folder
- Copy/paste it in your project (anywhere outside of
Builtins)
- 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