Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to exclude 3.5 inch screen devices when submitting an iOS app?

Tags:

ios

When submitting an iOS app to iTunes connect, is it possible to exclude 3.5" devices? I do not want to support this screen size, just 4" and above.

like image 489
Evgenii Avatar asked Oct 23 '14 00:10

Evgenii


1 Answers

I checked the iTunes Connect App Properties documentation and the App's Metadata documentation and unfortunately there doesn't look like there is an easy way to restrict your app from not being downloadable onto a iPhone 4S and older device.

But one thing you could try doing is setting your app to build for armv7s & armv8 (see this related question for more elaboration), or if that doesn't work, you could try throwing a "you need a modern iPhone in order to run this app" if it's launched on a smaller screen. This might be okay if your app is free, but you certainly will have an interesting time getting it onto the store if it's a paid app.

like image 186
Michael Dautermann Avatar answered Sep 28 '22 12:09

Michael Dautermann