Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

My app is no long suport ipad, when I upload my app it cause Xcode or iTunes Connect to erroneously reject my update

My app is started up in xcode 3.2. Now I have updated the xcode to 4.5. And I don't want to suport ipad. So I set the Devices setting to iphone. Then update my app.But itunes connect reject my update with error message:

This bundle does not support one or more of the devices supported by the previous app version. Your app update must continue to support all devices previously supported. You declare supported devices in Xcode with the Targeted Device Family build setting. Refer to QA1623 for additional information:https://developer.apple.com/library/ios/#qa/qa1623/_index.html

how can i solve this problem without removing my app from apple store

like image 229
dzpqzb Avatar asked Feb 04 '13 04:02

dzpqzb


1 Answers

Your app update must continue to support all devices previously supported.

Says it all really. You're not allowed to declare support for a device, then withdraw it. The only exception is when you move up the lowest supported iOS version, you can drop older devices that no longer support that version of iOS.

The document you linked to contains your three possible options.

like image 111
jrturton Avatar answered Sep 19 '22 14:09

jrturton