Need to specify devices as not compatible with my iOS game

Hi All,

Is there away to specify which devices are not compatible with my iOS game.  So example, iPod v4 is not working well and I am not sure I want to support it.  Is there away to tell the app store not to allow the purchase/download when a user has an iPod v4.

Scott

can anyone help me address this isssue?

S

Apple doesn’t give you the ability to limit specific devices.  Some devices can’t be upgraded to certain iOS levels, which is one way.  Some people can require certain features, like the accelerometer which excludes some devices.

Why doesn’t your iPod 4 work?
 

Rob,

Thanks for the response!

I turns out that iPod 4g will not run iOS7 and that I am going to require iOS7 and higher.  The performance is not good and it is such an old device at this point I dont want to spend much time working on it. 

All the other devices work fine.

Best 

Scott

Okay in that case, you can specify a minimum OS of iOS 7.  Put:

MinimumOSVersion=“7.0”,

In your build.settings inside the application->iphone->plist block.

Rob

can anyone help me address this isssue?

S

Apple doesn’t give you the ability to limit specific devices.  Some devices can’t be upgraded to certain iOS levels, which is one way.  Some people can require certain features, like the accelerometer which excludes some devices.

Why doesn’t your iPod 4 work?
 

Rob,

Thanks for the response!

I turns out that iPod 4g will not run iOS7 and that I am going to require iOS7 and higher.  The performance is not good and it is such an old device at this point I dont want to spend much time working on it. 

All the other devices work fine.

Best 

Scott

Okay in that case, you can specify a minimum OS of iOS 7.  Put:

MinimumOSVersion=“7.0”,

In your build.settings inside the application->iphone->plist block.

Rob