is there a way for the iOS app I'm submitting to be not available in the App Store for the iPad and only to be available for iPhones ?
iPhone only app
The app will at least work on iPad in « small screen » mode.
but you can define in Xcode your app as being iPhone only.
just select the project name in the left pane of Xcode, select Project tab and select iPhone.
For more estriction, see here:
https://stackoverflow.com/questions/10767346/xcode-how-to-set-app-to-be-iphone-only
Hey @bhavesh_jain,
@Claude31 has the right answer.
Depending on why you are asking the question and how complicated your application is, there might be other ways to accomplish what you are looking to achieve. As an example, if you are building an application with HealthKit, HealthKit does not exist on iPad so it will only show up in the App Store for iPhone.
Say that there is a device hardware feature that your application requires but is not supported on iPad, the application would not show up on the App Store for iPad.
https://developer.apple.com/support/required-device-capabilities/
Apple does a spectacular job at trying to make as many of their devices support as many applications as possible though so it may be hard to accomplish this if you are not building an extremely complex application.
Additionally, don't forget about your application running on Mac hardware! It is not a requirement yet... but I imagine that isn't more than a few years down the pipeline.
Hopefully this helps!