Post

Replies

Boosts

Views

Activity

Reply to WhatsApp and VoIP push notifications on iOS 13
The solution: There is no solution. WhatsApp use a restrict entitlement called com.apple.developer.pushkit.unrestricted-voip, that allow to no report an incoming call (see WhatsApp entitlement code below). The Apple support told: That entitlement isn't being granted any more. I guess that entitlement was granted just to give more time to big companies to adjust their code._ I have stuck on that by one week, and I didn't find official information nowhere. Maybe this reply can help other developers to don't waste time. WhatsApp latest entitlements file: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> &#9;&#9;<key>com.apple.developer.icloud-container-identifiers</key> &#9;&#9;<array> &#9;&#9;&#9;&#9;<string>57T9237FN3.net.whatsapp.WhatsApp</string> &#9;&#9;</array> &#9;&#9;<key>com.apple.developer.pushkit.unrestricted-voip</key> &#9;&#9;<true/> &#9;&#9;<key>com.apple.developer.ubiquity-container-identifiers</key> &#9;&#9;<array> &#9;&#9;&#9;&#9;<string>57T9237FN3.net.whatsapp.WhatsApp</string> &#9;&#9;</array> &#9;&#9;<key>application-identifier</key> &#9;&#9;<string>UKFA9XBX6K.net.whatsapp.WhatsApp</string> &#9;&#9;<key>com.apple.developer.carplay-messaging</key> &#9;&#9;<true/> &#9;&#9;<key>aps-environment</key> &#9;&#9;<string>production</string> &#9;&#9;<key>com.apple.developer.icloud-container-environment</key> &#9;&#9;<string>Production</string> &#9;&#9;<key>com.apple.developer.associated-domains</key> &#9;&#9;<array> &#9;&#9;&#9;&#9;<string>applinks:api.whatsapp.com</string> &#9;&#9;&#9;&#9;<string>applinks:v.whatsapp.com</string> &#9;&#9;&#9;&#9;<string>applinks:chat.whatsapp.com</string> &#9;&#9;&#9;&#9;<string>applinks:wa.me</string> &#9;&#9;</array> &#9;&#9;<key>com.apple.developer.siri</key> &#9;&#9;<true/> &#9;&#9;<key>com.apple.developer.team-identifier</key> &#9;&#9;<string>57T9237FN3</string> &#9;&#9;<key>com.apple.developer.icloud-services</key> &#9;&#9;<array> &#9;&#9;&#9;&#9;<string>CloudDocuments</string> &#9;&#9;&#9;&#9;<string>CloudKit</string> &#9;&#9;</array> &#9;&#9;<key>com.apple.security.application-groups</key> &#9;&#9;<array> &#9;&#9;&#9;&#9;<string>group.net.whatsapp.WhatsApp.shared</string> &#9;&#9;&#9;&#9;<string>group.com.facebook.family</string> &#9;&#9;&#9;&#9;<string>group.net.whatsapp.WhatsApp.private</string> &#9;&#9;&#9;&#9;<string>group.net.whatsapp.WhatsAppSMB.shared</string> &#9;&#9;&#9;&#9;<string>group.net.whatsapp.family</string> &#9;&#9;</array> </dict> </plist>
Dec ’20