appfeel / cordova-push-notifications

Phonegap, Cordova, Intel XDK push notifications support
MIT License
23 stars 25 forks source link

iOS Entitlements Not Set #8

Open ariveraati opened 6 years ago

ariveraati commented 6 years ago

It appears the plugin.xml file is missing the necessary entitlements for iOS to function properly.

<config-file target="*-Info.plist" parent="UIBackgroundModes">
    <array>
        <string>remote-notification</string>
    </array>
</config-file>
<config-file target="*-Debug.plist" parent="aps-environment">
    <string>development</string>
</config-file>
<config-file target="*-Release.plist" parent="aps-environment">
    <string>production</string>
</config-file>