What determines the display name of my app? - ios

I just submitted an app to the App Store through Xcode. I set up the name in iTunes Connect, but I just realized that I was still using the working title in Xcode. Does this mean that when users download my app, the working title be shown beneath the app icon, or will the iTunes Connect title be used?

The "appName" on itunes connect will define the name displayed on the app store.
The name that will be under your app icon is the Product Name defined in xcode.
You can find it on Targets > YourProject > Build Settings > Packaging.
EDIT : changing the Bundle Display Name in your info.plist should do the work.

The Bundle Display Name in the app's plist is what is displayed under the icon. This display name can be changed independent of the project name, product name, or the Bundle ID suffix. The name displayed by the App Store is set in iTunes Connect, and can also be set independent from any of the other 4 or 5 "names" for an app.

Related

iOS App Name Not Correct

I’ve made an app and have put in on the App Store, but for some reason the app name in the App Store does not show up after installing, instead it shows up the name that I created it with in Xcode. Why doesn’t the name that I named it for the App Store show up?
Example:
The bundle identifier is
com.companyname.namegive
The namegiven is showing up when installing it and not the name that shows up in the App Store.
The bundle display name (the name that displays under the app icon) and the name in the App Store are two different things. You can only change the bundle display name in your IDE (e.g. Xcode) and you can only change the name displayed in the App Store in iTunes Connect.
Read more about changing an iOS app's name here.

Changing app display name without changing bundle identifier on App Store?

I have changed the bundle display name of my app and submitted the app on appstore.
Will it change it's name in the Appstore or not?
If my first app name was "XYZ" and now I have changed the display name in info.plist to "ABC", if I search my app in the AppStore, I want to find it as "ABC".
I've only changed the bundle display name, so is it ok or should I make other changes as well?
You can edit the App Store title of your App in iTunes Connect.
The display name defined in your plist is the title, which occurs on your home screen below your App icon.

Changing iOS App name in new update?

I currently have an app which is in the iOS store, but in the new version I am wanting to change the entire name of the app with the upcoming update, with this what will I need to update?
The only things I can think of is the bundle ID & name in the developer centre, is that all?
No need to change the bundle ID since it's the same app.
I would suggest changing the name in the developer center, AND changing the "Bundle display name" in the plist. This will affect the name in the appstore as well as the name displayed under the app icon once it's installed on a device.
To change Bundle display name: Go to targets and select target. Select "Info" section. Under "Custom iOS target properties", add a new key with the name Bundle display name. Set value to new name.

Naming an iOS app for submission

iTunes Connect accepts names for the app to include symbols like "+". But when I am trying to submit the app with an Xcode project name that includes "+" I receive the error that the name of the project or the name of the application (or product, do not remember which) cannot include symbols like "+". So I ended up removing the "+" symbol from the name of the product. Therefore the name on the App Store includes "+" but when installed on the device the name does not include the symbol "+". How can I resolve this issue in the next submission? What name will be the name of the app on the device? How can it include "+" and pass the test for submission?
If you ONLY want to change the app "Display Name", this is the name that appears on the users iPhone when they download the app.
1.) Go to your info.plist and add a new line, set the Key to "Bundle Display Name."
2.) Enter whatever name you would like up to 12 Characters. This can include ANY character you want. i.e. +_)(*&^%$##!
If you ever having issues with the app name not matching with the name setup in iTunes Connect then double click slowly on the Xcode Project name on the top left. Change this name and a window will pop up asking you to rename the whole project, select yes and the name of your project will be change. This is where you need to make sure the names match in both Xcode and iTunes Connect.
Project info -> Targets (click on app icon entry) -> Build Settings -> Product Name
from: Change name of iPhone app in Xcode 4
A quick app store search and purchase shows that iTunes Connect allows for unicode symbols (those include !##$%^&*-+= also). But for an app bundle name, it is invalid. Punctutuation symbols are OK (As in the app Where's My Water's title on the device is just 'Water?').

iPhone application name on iTunes

Is there any way to set the display name of the application which is shown on iPhone and on iTunes different? The name that I wrote to "Display bundle name" in info.plist is shown both on iTunes and iPhone, is there any way to separate them?
My second question is: how can I change the genre of my application? Now it's "Unknown Genre".
The name that is displayed on the iPhone beneath the icon is set in the "Product Name" build setting for your apps target. You can set this to whatever you feel appropriate.
Then whatever name you entered as the App Name in iTunes Connect is shown in iTunes and the App Store.
Apps don't normally have a genre. Apps are separated into Categories, of which you should have been able to pick 2 (primary and secondary) during your submission through iTunes Connect.
You should be able to update these category choices by logging into iTunes Connect and editing your app.
I dont know if it is true what you wrote. We once got an app rejected because of this:
XXXX has been rejected because of a naming inconsistency. The name entered into iTunes Connect must match the name of the application installed. The name entered into iTunes Connect is XXXX while the name of the application installed is YYYY. In order for your application to be reconsidered for the App Store, please resolve this issue and upload your new binary to iTunes Connect.
The way to change the displayed application name in Xcode is to change the "Product Name" entry in your Target's Build Info pane. To do this:
Select your Target on the left side under Groups & Files
Select File > Get Info
Select the Build tab
From the Configurations popup, select All Configurations
In the search box, type in "product name"
Double-click the entry field and type in the new name of your product, and select OK.
In your Info.plist, change your Bundle Display Name and your Bundle Name appropriately.
Do a clean build (Build > Clean all targets; Build > Build)
Once these steps are completed you should see a newly built binary under the Products folder. Do not change your Bundle Identifier. This is used to uniquely identify your application in the App Store. Changing it would prevent users from upgrading, and effectively introduce a new application rather than an update.
May be I am wrong but this is possible that app has two names(one for iTune conect and other for iPhone).
I have checked an app "iTune connect names is "Remember the milk" and name in iPhone is "RTM" ".
There is clause in AppStore Review Guidelines.
Please review link: https://developer.apple.com/app-store/review/guidelines
App May Reject due to:
3.4 App names in iTunes Connect and as displayed on a device should be similar, so as not to cause confusion

Resources