-
-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ITMS-90078: Missing Push Notification Entitlement #368
Comments
@DonnieBLT Just for the clarification can you confirm if this is an "error" or a "warning" cause i found a discussion regarding this. Does this answer by Sten in this discussion https://stackoverflow.com/questions/32251123/missing-push-notification-entitlement solves this ? |
Thanks for the clarification, it's a warning but it sends an extra email each time the app has a PR. |
Is this regarding the deployment part? Or is the email being generated by some CI/CD pipeline? |
the CI/CD publishes the app to the app store for testing on each PR / merge |
Is it possible to get a look into this pipeline? |
Can you share the email that is being sent it would make it easy to figure this out.. |
I think this is due to the Publishing and the Post Processing steps in the workflow... the app is being built 2 times and maybe that is why it is generating 2 emails.. |
Can we please prioritize this? |
@Uttkarsh-raj can you please add your comments here of how we can fix this? |
The error message indicates that your app is attempting to use the Apple Push Notification service but lacks the required Steps to Add
|
Related to #368 --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/OWASP-BLT/BLT-Flutter/issues/368?shareId=XXXX-XXXX-XXXX-XXXX).
The warning "ITMS-90078: Missing Push Notification Entitlement" occurs when your iOS app has been submitted to the App Store without the necessary push notification entitlements configured, but your app or its frameworks use APNs (Apple Push Notification service) features.
To fix this issue in a Flutter project, follow these steps:
Enable Push Notifications in Xcode:
<your_project>/ios
folder).Ensure your App ID is Configured for Push Notifications:
Provisioning Profile:
Update your Flutter project:
Re-submit your app:
Note: If your app does not use push notifications, this error could also be triggered by a third-party library that references APNs. In this case, you may need to remove the library or disable its push notification features if not used.
Before re-submitting your app, make sure to test it thoroughly to ensure that the push notification capabilities are correctly implemented and that there are no other entitlement issues.
The text was updated successfully, but these errors were encountered: