IOS 9 notifications - why is my application name missing when requesting permission?

I am using my first iOS9 app with notifications. The notification service through Parse is working fine. However, when I request a new user’s permission to send notifications, I get the screen below and I don’t know why the application is called “Null”.

enter image description here

+4
source share
1 answer

Check the Display name of the package in the info.plist file. I think CFBundleDisplayName may be empty in the info.plist file.

So set it as $ (PRODUCT_NAME) .

enter image description here

+5

Source: https://habr.com/ru/post/1623121/


All Articles