No notification sound when sending notification from firebase in android

前端 未结 9 1712
迷失自我
迷失自我 2020-12-01 01:00

I am sending push notification from firebase to my Android Application. but when my app is in background firebase onMessageReceived method is not called instead firebase sen

9条回答
  •  栀梦
    栀梦 (楼主)
    2020-12-01 01:40

    With HTTP v1 API it is different

    Documentation

    Example:

    {
     "message":{
        "topic":"news",
        "notification":{
           "body":"Very good news",
           "title":"Good news"
        },
        "android":{
           "notification":{
              "body":"Very good news",
              "title":"Good news",
              "sound":"default"
           }
        }
      }
    }
    

提交回复
热议问题