Can I upgrade UIRequiredDeviceCapabilities from opengles-1 to opengles-2 in iOS app
Posted
by
michael
on Stack Overflow
See other posts from Stack Overflow
or by michael
Published on 2012-09-24T21:35:52Z
Indexed on
2012/09/24
21:37 UTC
Read the original article
Hit count: 675
Hi I’m upgrading my app from cocos2d-x 1.x to 2.x that means change from OpenGLES 1.0 to 2.0,
I've updated my Info.plist settings to reflect the change
<key>UIRequiredDeviceCapabilities</key>
<dict>
<key>accelerometer</key>
<true/>
<key>opengles-2</key>
<true/>
</dict>
Change from opengles-1 to opengles-2
But while installing application from XCode 4.5 GM (the older version was compiled with prevoius XCode) I receive error:
Could not change executable permissions on the application
© Stack Overflow or respective owner