Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <service
  2. android:name="com.mypackagename.GCMIntentService"
  3. android:enabled="true" />
  4. <receiver
  5. android:name="com.google.android.gcm.GCMBroadcastReceiver"
  6. android:permission="com.google.android.c2dm.permission.SEND" >
  7. <intent-filter>
  8. <action android:name="com.google.android.c2dm.intent.RECEIVE" />
  9. <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
  10. <category android:name="com.mypackagename.GCMIntentService" />
  11. </intent-filter>
  12. </receiver>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement