Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. <service
  2. android:name="com.yourapp.YourPushService"
  3. android:stopWithTask="false" />
  4.  
  5. {
  6. "to": "/topics/your_topic_here",
  7. "data": {
  8. "text":"text",
  9. "text1":"text1",
  10. ...
  11. }
  12. }
  13.  
  14. <meta-data
  15. android:name="com.google.firebase.messaging.default_notification_icon"
  16. android:resource="@mipmap/ic_launcher" />
  17.  
  18. <meta-data android:name="com.google.firebase.messaging.default_notification_color"
  19. android:resource="@color/colorPrimary" />
  20.  
  21. "data" {
  22. "title": "welcome",
  23. "description" :"to your app" ,
  24. "image" :"image_url",
  25. "deeplink" :"deeplink",
  26. - -
  27. }
  28.  
  29. "notification" {
  30. "title":"title",
  31. "description" : "description",
  32. "click_action" :"activity to be open"
  33. ..
  34. }
  35.  
  36. W/GCM-DMM: broadcast intent callback: result=CANCELLED forIntent { act=com.google.android.c2dm.intent.RECEIVE pkg=com.cabipool (has extras) }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement