Although I do not use API used to register with Apple Push Notification service, I receive an email with header - Missing Push Notification Entitlement - after uploading my archive. What should I do ?
Hi,
The app validator checks for an implementation of the UIApplicationDelegate method application:didRegisterForRemoteNotificationsWithDeviceToken: in the app. You’ll get the warning if your app delegate implements that method and there is no aps-environment entitlement.
It's possible that a third-party library your app uses has implemented that method even though your app doesn't do anything with push notifications. In that case you can just ignore the warning. It's there to let developers who do use push notifications know that they might have signed their app incorrectly.
The only way to eliminate the warning is to remove all push notification code from your app, whether yours or a third party's.
--gc