How to submit Two binary(iPhone and iPad) files for same project in App Store?

ⅰ亾dé卋堺 提交于 2019-12-01 01:18:40
rckoenes

You can't upload two binary versions of the same app under the same name.

You either have to make a universal app (meaning iPhone/iPad app in one app) or submit under another name.

Start reading this: http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AdvancedAppTricks/AdvancedAppTricks.html

You can submit multiple apps from the same Xcode Project by using multiple Targets, and editing the Bundle ID suffix of each Target so that each Target has a unique Bundle ID. You might also want to change the Product name for each Target in the Build settings so that your apps will have different bundle file names.

Note that, unless the iPad version is different enough (uses iPad only APIs for instance) from the iPhone version, it has been reported that Apple might reject a nearly identical iPhone/iPad pair of apps and request that you submit a single Universal build instead.

If you wanted your iPhone and iPad project to be in the same app, you should have built it that way.

However, if you did specifically want a separate iPhone and iPad app, then you should make the difference clear in the names of each app.

There are many companies who have both iPhone and iPad apps on the appstore. Generally, the iPhone app is just called 'appName' and the iPad version is usually called 'appName for iPad'.

Examples of this are:-

  • Skype and Skype for iPad

  • Ebay and Ebay for iPad

If you want the application to have the exact same name in iTunes Connect, you will have to make it a universal app.

You can cancel the "waiting for review" and submit your universal binary instead:

Can I reject a binary that has already been submitted for review? Yes. You are permitted to reject your binary, to remove it from the Apple review queue, when your app is in one of the following iTunes Connect states:

Waiting For Review
In Review

To reject your binary, simply click the Reject Binary button. After the binary has been rejected, you can then indicate you are ready to submit another binary through Application Loader, by clicking on the Ready to Upload Binary button.

Please note that if you reject a binary that is Waiting For Review or In Review, your review time will be reset and you will start over from the beginning once you submit a new binary.

iTunes Connect FAQ

However, if you absolutely need to have two seperate applications, you can create a new app in iTunes Connect and name it for example "[your app] for iPad" or "[your app] HD" or something similar like a lot of apps you see on the store.

Are there any particular reasons you aren't submitting a universal application ?

It would have been better if it was a universal app.

In itunes Connect you cant create/re-use apps-name,sku number,bundle-identifier. You could submit a universal app as update.

If you still want multiple apps, Then you will have to create multiple apps in itunes connect with different name, sku number and bundle-id,

But note one thing the name of the application installed in the device is what you give on xcode, not the one in itunes connect. So I guess you could only give that much similarity.

PS if create a app with details{apps-name,sku number,bundle-identifier} and you delete without publishing also, you cant reuse these again.

So tell client the best(may be only possible) solution is Universal app.

if you have the same application for both iphone and ipad, for iphone app name will be - [appliction name], for ipad it should be - [application name ] HD

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!