Reputation: 65
My bundle is like sophia.music, but I changed my display name in Bundle display name to "音乐" and it works ok. But, when I receive a notification, I check the notification on the notification center it still shows music. How can I change it? Any comments?
Upvotes: 0
Views: 2101
Reputation: 8506
Follow the below steps to change the name:
Upvotes: 2
Reputation: 14118
For changing app name set CFBundleDisplayName
value in info.plist file:
<key>CFBundleDisplayName</key>
<string>New app name here</string>
Name specified in this way would be displayed on device under the app icon.
Push notification service depends on app bundle id CFBundleIdentifier
.
So you needn't regenerate certificates.
Upvotes: 0