Missing Push Notification Entitlement warning

IosApple Push-Notifications

Ios Problem Overview


We have created an App ID, distribution certificate and provisioning profile. Push Notifications were not initially enabled.

We now need to implement Push Notifications in the app.

We have enable Push Notifications in the App D, check the provisioning profile, the provisioning profile was invalid, updated it, and downloaded the latest provisioning profile to use it for next time.

We then integrate the APIs for Push Notifications via APNS in our code.

After uploading the app in iTunesConnect, we get the following email from Apple:

> Dear developer, > > We have discovered one or more issues with your recent delivery for "Swanvi". Your delivery was successful, but you may wish to correct the following issues in your next delivery: > > Missing Push Notification Entitlement - Your app appears to include API used to register with the Apple Push Notification service, but the app signature's entitlements do not include the "aps-environment" entitlement. If your app uses the Apple Push Notification service, make sure your App ID is enabled for Push Notification in the Provisioning Portal, and resubmit after signing your app with a Distribution provisioning profile that includes the "aps-environment" entitlement. See "Provisioning and Development" in the Local and Push Notification Programming Guide for more information. If your app does not use the Apple Push Notification service, no action is required. You may remove the API from future submissions to stop this warning. If you use a third-party framework, you may need to contact the developer for information on removing the API. > > After you’ve corrected the issues, you can use Xcode or Application Loader to upload a new binary to iTunes Connect.

We have re-checked the App ID. Push Notifications are enabled for development and production.

In the Provisioning Profile, the Push Notifications option is shown.

Why are we getting this warning via email?

Ios Solutions


Solution 1 - Ios

You need to see 2 things: The provisioning profiles used by your account on Xcode and the ones on developer.apple

Its all about the provisioning profiles.

STEP 1: Go to https://developer.apple.com/account/ios/certificate/ and see the Active iOS Distribution Provisioning Profiles you need for your app. Then click on it and make sure Enabled Services has Push Notification enabled. If it doesn't then click on edit and enable it by following the steps provided by Apple. If it is enabled then perfect.

distribution link

STEP 2: Delete any Invalid Provisioning Profiles you see related to app (just the invalid ones for YOUR app). I'll tell you why in the following steps.

STEP 3: Go to Xcode -> Preference -> View Details (for your Account) -> [OPTIONAL: To be sure invalid one is gone, rt-click on any provisioning profile, select "Show in Finder", then Delete/Move all the provisioning profiles from that folder.] Now click Download All Profiles. This will replace local provisioning profiles with current ones. Click DONE.

STEP 4: Go to your app Targets -> Build Settings -> In Code Signing, expand your Provisioning Profile to show Debug and Release tabs. By default it will be on Automatic (which is why your app was probably automatically using the invalid profile that we just deleted in step 2). For Release, to be on a safer side, select the Active Provisioning Profile with enabled Push Notifications as seen on step 1.

That's it.

You shouldn't get any emails now.

Solution 2 - Ios

@Djeeraj V.S. is correct. Cordova added some conditional compilation to remove this requirement for apps that do not need Push notifications.

You could comment out the code in in Classes\AppDelegate.h as per this answer, but its better to add the compilation symbol DISABLE_PUSH_NOTIFICATIONS via the UI so you can continue to benefit from future Cordova upgrades.

I come from .NET background so i am familiar with conditional compilation but had to spend a bit of time working out how to get the compiler flag working in XCode.

Turns out the magic word here is 'Preprocessor Macro'. Here is how its done graphically via the UI (note that this the way its done in XCode 6.1):

enter image description here

Hope this helps other people out there in same situation.

Solution 3 - Ios

In my case I've just checked again 'Capabilities' page inside project properties and pressed 'fixed issue' in the correspond APNS menu. Now it have to look like this enter image description here

XCode 11. To handle press on Capability button (+)

enter image description here

Solution 4 - Ios

I had the same warning and here is how I solved it.

First of all, when you archive your project, under entitlements if you don't see aps-environment and your app uses push notifications, then you will get the warning mentioned in the question.

FIX STEPS

1- Make sure your distribution profile is valid in Apple's Portal.

  • If it's not, then regenerate it. 2- If your distribution profile is valid, then in XCode, navigate to Preferences and then click View Details. At this point under Provisioning Profiles, make sure you don't have invalid distribution provisioning files. If there are invalid ones, then make right click and move them to trash. If you don't have the valid one, then download it from the Portal. 3- Go to Build Settings -> Code Signing and for everything choose the distribution provisioning profile.

At this point if you archive, you can see aps-environment in your entitlements and the warning email won't come.

Solution 5 - Ios

In my case, following practice worked. Xcode 9.2

  1. Disabled Automatically manage signing which appears in Build Target > Signing
  2. Import provisioning profile manually.

Solution 6 - Ios

I have a cordova app, where I have had notifications previously, but wanted to remove it from the app. I tried following the above answers, but I still encountered this issue when I uploaded the build. I realized, that I had a plugin installed, who used the notification setting, and somehow kept some settings activated for notifications.

I solved the issue by removing the ios platform completely cordova platform rm ios, adding it again cordova platform add ios and making sure that the plugin was removed from the ios.json and fetch.json files.

Solution 7 - Ios

2021 Xcode 12.4

I had the similar issue.my app uses push notification. For older release I never got such email from Apple. I think there's some issue with the Automatically manage signing.
Solution Do the Manual app signing

  1. Disabled Automatically manage signing which appears in Signing & Capabilities
  2. Import provisioning profile manually. enter image description here

Solution 8 - Ios

I fixed that issue by below steps:

  1. Open your project with Xcode
  2. Click the Signing & Capabilities in Runner tab and then click the + Capability button. Type push in the filter field and press Enter.
  3. After adding the push notifications entitlement, the Runner.entitlements file will have been created in your project

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBisView Question on Stackoverflow
Solution 1 - IosAnish KumarView Answer on Stackoverflow
Solution 2 - IosSteven de SalasView Answer on Stackoverflow
Solution 3 - IosVyacheslavView Answer on Stackoverflow
Solution 4 - IosneoView Answer on Stackoverflow
Solution 5 - IosAshishView Answer on Stackoverflow
Solution 6 - IosLiriannaView Answer on Stackoverflow
Solution 7 - IosSaurabh47gView Answer on Stackoverflow
Solution 8 - IosM KarimiView Answer on Stackoverflow