Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I submit an iOS app that doesn't support the 4s?

Is it possible to submit an iOS app to the App Store that only supports the 5 and 6 versions of the iPhone and doesn't support the iPhone 4s. The 4s has a different aspect ratio than the 5 and 6 and since I need the entire screen space my app won't look good on the 4s so for now I don't want to support it. Is this possible? If so, are there specific settings that I need to change in Xcode to do this?

like image 356
Blane Townsend Avatar asked Feb 07 '15 16:02

Blane Townsend


People also ask

How do I download an app on my iPhone 4S if its not compatible?

Open iTunes and select Apps from the drop-down menu. Then click the App Store button and search for the app you want to download. Click to download the app, which may prompt you to enter your Apple ID password. The App Store in iTunes has all the same apps that you find on other devices.

Can you still download apps on iPhone 4S?

Download apps, games, movies, music, books, magazine, newspapers and more. Use the App Store to browse, purchase, and download apps specifically designed for iPhone. To download content, from the home screen tap App Store.

What iOS can iPhone 4S run?

The 4S uses iOS 5.1. 1, which was released on May 7, 2012. As of April 2021, the device can be updated to iOS 9.


2 Answers

Unfortunately, you have to support the iPhone 4S screen size.

Here's article 2.10 from the App Store Review Guidelines ( https://developer.apple.com/app-store/review/guidelines/#functionality ):

2.10 iPhone Apps must also run on iPad without modification, at iPhone resolution, and at 2X iPhone 3GS resolution

I guess if you have to support 2X iPhone 3GS resolution for iPad, you have to do it for iPhone as well.

like image 112
Skoua Avatar answered Oct 20 '22 19:10

Skoua


This must have changed since you asked this question. In iOS9, you can cut off devices not supporting 64 bit architecture. See this article:

http://9to5mac.com/2015/06/10/ios-9-older-devices-lose-support-apps/

Thats great (from a developer and legacy support standpoint), especially since 4s usage is really dwindling. Problem is, it cuts off a lot of the iPads (over 80%), since they only switched to 64 bit when the iPad Air was introduced. So beware of what you cut off in tablet world with this approach.

I'm not sure if you can target specific devices though, which would be the most ideal.

like image 2
Bourne Avatar answered Oct 20 '22 20:10

Bourne