Free Xcode Provision: Apple Push Notification Feature Available Only to Users Enrolled in Apple Developer Program

I am trying to use the free xcode provisioning but I am having the following problem.

enter image description here

I turned off the remote notification after receiving this problem, but it still does not disappear.

enter image description here

How to solve this problem

xcode version 7.2 ios version 9+

Note:

xcode created a certificate for me. I saw this in keychain

+5
source share
3 answers

Remove certificate from keychain. Remove your account from xcode-> preference-> account. Add your account again. The problem will be solved. The remote notification feature is not available for the free Apple developer account.

+4
source

Here is a shortcut for those who have tried the method of removing the certificate but still not working:

Find the project projectName.xcodeproj, click "open contents", edit "project.pbxproj" with the txt editor:

changes:

com.apple.Push = { enabled = 1; }; 

in

 com.apple.Push = { enabled = 0; }; 

Repeat the assembly, and this time there is no error when clicking :)

+6
source

To right-click on the project Name.xcodeproj → Show package contents → open project.pbxproj → search for “com.apple.Push” → set enabled = 0

+2
source

All Articles