Problem: Received Warning each commit
To avoid receiving the email Notification of warning every time the upload version is created, the “Push Notification Entitlement” is added
Question and answer
Stackoverflow.com/questions/3…
The app validator checks for an implementation of the UIApplicationDelegate method application:didRegisterForRemoteNotificationsWithDeviceToken: in the app. You’ll get the warning you described if your app delegate implements that method and there is no aps-environment entitlement.
It’s possible that a third-party library you’re using 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 if they might have signed their app incorrectly.”
Open the Notification
How to generate the certificate used in this step
Help.apple.com/developer-a…
The result is an additional file, permission file:
Content:
<dict>
<key>aps-environment</key>
<string>development</string>
</dict>
Copy the code
Aps-environment can be seen when uploading
Question: I don’t know if the problem can be solved without certificate