Building for specific architecture

Is there a setting that I can add to build.settings that will make it so that my app will only support certain architectures?

Specifically I want to compile my app so that if accessed via App World using an iPhone or iPhone 3G it should show as being unavailable for the device.

I found a minimum OS setting but that doesn’t seem to solve the problem. since 3G users can run iOS 4.

Any help would be appreciated. [import]uid: 62746 topic_id: 11454 reply_id: 311454[/import]

You may use device compatibility for that…

UIRequiredDeviceCapabilities = {
“armv7”,
},

should do the trick… [import]uid: 10478 topic_id: 11454 reply_id: 41503[/import]

Great, thanks :slight_smile: [import]uid: 62746 topic_id: 11454 reply_id: 41511[/import]