When I name a file ~ipad or ~iphone will they only be bundled into the apps for the specific devices or into both?
If both how can I achieve that a file is only compiled with the iPad or iPhone version?
Thank you, a0down
One of the main features of a universal app is that the binary is the same for both iPhone and iPad. What you submit to the app store is a single binary that contains all the assets and code required to run the app on both devices.
Unfortunately the only way for you to get what you want would be to create two completely separate apps - one for iPhone, one for iPad - and submit them both to the store.
Related
We have a app that was submitted as a universal app with support for all devices iPad and iPhone but we no longer want it to show in the store as a iPad app we want it to just be a iPhone only app.
This app was built with Appcelerator so i have changed the app tiapp.xml details to only support iPhone no longer universal, but it will not submitted to the store.
I can't upload the existing app because the family group in the bundle Id. it won't accept removing the iPad.
How can we remove the app from being listed as a iPad app really important as the app was not built with iPad in mind it would be fine if it was just a scaled up version of the app.
Any help please?
Developers who wish to issue updates, but remove device support, have
three choices:
Fix their app so that it can work on the devices they originally set
out to support. Target a newer version of iOS that requires a newer
device. Remove their app from the store, and upload the new app with a
different bundle ID.
I have made several xcode versions for different sizes on the iphone (iphone4,iphone5, iphone6, iphone 6+, all which have different storyboards, due to the different sizes. Due to the complexity of my app I wasnt able to do constraints. Is there any way I can upload different versions of my app for different platforms on the app store?
For example, I want to upload my Xcode project for iphone4 to the app store, so that it is available for people with iphone4, and I want to upload my other Xcode project for iphone5 to the app store, so that it is available for those with iphone5.. and so on.
Thank you. This is the first time I have ever uploaded an app to the Apple app store so any help would be greatly appreciate.
One suggestion, for that problem you can use the new "size classes" in xcode 6. I recommend you watch the WWDC video and read this document. Doing that you only have to have one app.
https://www.codefellows.org/blog/size-classes-with-xcode-6-one-storyboard-for-all-sizes
It would be good if you use single app using adaptive layout for different version of device
In iTunes Connect you cannot create apps with same name,sku number,bundle-identifier .Those details should be unique . If you want to create different version apps for iPhone4 and iPhone5, then you have to create different apps in iTunes connect with different Names and Bundle identifier for different versions.
Please refer this before submitting Apple to reject any apps that don't use iPhone 5 displays as of May 21st
I have created an ipad application. I still haven't uploaded it to the app store, this application has a specific bundle ID.
Meanwhile, I was creating the same application content and features but compatible only with iPhone/Ipod devices.This application has a different bundle ID and a different Xcode file.
So, now i have two Xcode files, one for the iPad and the other one for iPhone, each one with different bundle IDs.
The next step would be uploading this application to the app store, so the situation is , how can i upload it and link two different xcode files together, one for ipad and the other for iPhone
keeping in mind, this is a paid application, so if the user has paid for it on his iPad, he should get the iphone version for free ( on the same App ID ) .
You cannot upload two versions of the same app to the app store.
I suggest consolidating into 1 file, a universal file that will work for BOTH iPhone or iPad.
Other option, would be to create a new app under a different name for iPad or iPhone / iPad only.
Excerpt from Apple's programming guide:
Creating a Universal App
A universal app is a single app that is optimized for iPhone, iPod
touch, and iPad devices. Providing a single binary that adapts to the
current device offers the best user experience but, of course,
involves extra work on your part. Because of the differences in device
screen sizes, most of your window, view, and view controller code for
iPad is likely to be very different from the code for iPhone and iPod
touch. In addition, there are things you must do to ensure your app
runs correctly on each device type.
Xcode provides built-in support for configuring universal apps. When
you create a new project, you can select whether you want to create a
device-specific project or a universal project. After you create your
project, you can change the supported set of devices for your app
target using the Summary pane. When changing from a single-device
project to a universal project, you must fill in the information for
the device type for which you are adding support.
Read the full version HERE
We have an iPhone app and want it to support iPad also.
But as I learned if you submit an app to Apple and indicate it is Universal, while in reality it is not (for example iPad is not supported at the time of submission, this is restricted by their policy).
So, what is the best way that we simultaneously allow further development of our application such that we also support iPad?
ps: we didn't want to create separate projects for iPad and iPhone since they share lot of code, but as I mentioned we encountered following obstacles.
Submit your app as an iPhone app. When you support iPad change it to a universal app when you submit your update.
I've an existing iPhone app.
I need to create a separate app for iPad app (and of course use shared code).
But have the two apps to be uploaded to apple store as one app.
Is creating a new target fit my case? If yes can you provide me with step by step tutorial?
Thanks.