avivais / phonegap-parse-plugin

Phonegap 3.0.0 plugin for Parse.com push service
195 stars 315 forks source link

Android update Manifest to include ParsePushBroadcastReceiver #72

Closed mobiRic closed 9 years ago

mobiRic commented 9 years ago

This plugin does not work to receive push messages until the ParsePushBroadcastReceiver is added to the Android manifest file.

e.g.

<receiver
    android:name="com.parse.ParsePushBroadcastReceiver"
    android:exported="false" >
    <intent-filter>
        <action android:name="com.parse.push.intent.RECEIVE" />
        <action android:name="com.parse.push.intent.DELETE" />
        <action android:name="com.parse.push.intent.OPEN" />
    </intent-filter>
</receiver>

I propose either this should be fixed in the plugin, or at the least that the readme file should be updated to reflect this.

mobiRic commented 9 years ago

Apologies, my mistake on this - I was testing using native Android code to subscribe.

What I wrote above is 100% wrong - closing the issue.