Created
October 6, 2014 06:41
-
-
Save akexorcist/825f0b54345a0a5b9e64 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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