I have a question of clarification about naming apps. On the app store, some apps have a certain name, for example Spotify has "Spotify - Music and Podcasts", but when you actually download the app, the name beneath the icon is just "Spotify".
Where in Xcode (or in the App Store Connect website) do you set the first, or the second?
-
In App Store Connect,
App Information > Localizable Information > Name
is the longer one. Developers do that to include keywords in the title hoping for good ASO. -
The one that the users see when using the app is set and localizable in Xcode. Find the target in the project view then edit
General > Display name
field.- If you are using string catalogs, add
InfoPlist.xcstrings
file to your target. It will haveCFBundleDisplayName
key so that you can translate this name.
- If you are using string catalogs, add