Limit on iOS devices with A8 or better GPU

I need to restrict my application to only support devices with A8 or newer GPUs.

In mine info.plist

, I have a key UIRequiredDeviceCapabilities

set to opengles-3

:

<key>UIRequiredDeviceCapabilities</key>
<array>
    <string>armv7</string>
    <string>opengles-3</string>
</array>

      

But that means it supports A7 GPUs or newer. I've looked through all the keys and I don't see any limitations on A7 devices at all, but it looks like it's best to use A8 GPUs, vastly superior to A7. The required key metal

supports the same devices as OpenGL ES 3. The requirement arm64

will not work as the iPhone 5s has an A7 GPU.

Can anyone recommend a way to support A8 only or better?

+3


source to share


1 answer


You should only eliminate it with plist so as not to deviate



Here is the link for compatibility link , unfortunately I don't see anything that can fix the iPhone 5S.

0


source







All Articles