Skip to content

Instantly share code, notes, and snippets.

@akexorcist
Created October 6, 2014 06:41
Show Gist options
  • Save akexorcist/825f0b54345a0a5b9e64 to your computer and use it in GitHub Desktop.
Save akexorcist/825f0b54345a0a5b9e64 to your computer and use it in GitHub Desktop.
<receiver android:name="com.parse.GcmBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<!--
IMPORTANT: If you change the package name of this sample app,
change "com.parse.tutorials.pushnotifications" in the lines
below to match the new package name.
-->
<category android:name="com.parse.tutorials.pushnotifications" />
</intent-filter>
</receiver>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment