I want to send iPad only through iTunes. I have already made the following configuration changes.
- In the Summary section, I installed
Active Target Device : iPad - In the "Build Settings" section for "Virtual architectures" set to
armv7
Although this ensures that the build will not work on devices other than the iPad, I also want to make sure that users do not see this application in the list of iPhone applications in the App Store results.
When reading the documentation for the iOS developer portal, Apple mentions that you must specify the UIRequiredDeviceCapabilities key to indicate which devices are allowed to run this application.
- Is UIRequiredDeviceCapabilities the right approach to make sure my app only appears in iPad results?
- Why do I need to set a value? ARMv7?
source share