1

I have an application on the app store.

I need different app stores to show different names for the app and even different icons if possible - by country NOT by language.

For example - England, USA, Canada (all english speaking countries) should all show different names and icons on their app stores. So my apps will be called "Travel England", "Travel USA" and "Travel Canada".

So... can it be done? also can it be done for the icons?

Thanks.

rmaddy
  • 314,917
  • 42
  • 532
  • 579
ozd
  • 1,194
  • 10
  • 34
  • It can be done based on the languages because app will be notified by the language the user chooses from their device but not by country. – Praveen Kumar Oct 24 '17 at 13:40

1 Answers1

0

You can localize your app name. It is similar to localize permission strings. You will have InfoPlist.strings files.

  1. Localize Info.plist file. How to localise a string inside the iOS info.plist file?
  2. Add ""CFBundleDisplayName" = "My localized app name";" to the corresponding .strings file.
Yuchao Zhou
  • 1,062
  • 14
  • 19