Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. var message = new gcm.Message({
  2. collapseKey: 'data',
  3. priority: 'high',
  4. contentAvailable: true,
  5. delayWhileIdle: false,
  6. timeToLive: 10000,
  7.  
  8. data: {
  9. message: 'Message from gcm server',
  10. action: 'Update data on server'
  11. },
  12.  
  13. notification: {
  14. tag : 'hasData',
  15. title: "My notification title",
  16. icon: "ic_launcher",
  17. color: "#22C064",
  18. sound: "jingle_bells_sms",
  19. soundname: "jingle_bells_sms",
  20. body: "This is a GCM notification that will be displayed ASAP.",
  21. click_action: "OPEN_APP"
  22. }
  23. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement