My app's display name is different from the name in action center

enter image description hereMy package is similar to sophia.music, but I changed my display name in the display name of the Bundle to "音乐" and it works fine. But, when I get the notification, I check the notification in the notification center, it still shows music. How can I change it? Any comments?

0


source to share


2 answers


Follow these steps to change the name:



  • Go to target settings
  • Select "Build Settings"
  • Search for the product name. It is available in the header of the package
  • Write your name here
+2


source


To change the application bundle name CFBundleDisplayName

in the info.plist file :

<key>CFBundleDisplayName</key>
<string>New app name here</string>

      



The name entered in this way will be displayed on the device under the application icon. The Push Notification feature depends on the App ID CFBundleIdentifier

. Therefore, you do not need to restore certificates.

0


source







All Articles