untrueme
untrueme
i've tried to implement data notifications only, the results are the same
``` await messaging.send({ token: 'token', data: { 'messageId': messageId.toString(), }, android: { priority: "high", notification: { sound: "default", default_vibrate_timings: false, vibrate_timings: ['0.1s', '0.5s', '0.1s', '0.5s'], }, "ttl": 240000 } ```
without notification key notifications doesn't appear
Data messages works good. Thanks!
``` await messaging.send({ token: token, data: { 'title': title, 'body': body }, android: { priority: "high", ttl: ttl } }); ``` hope it will help
same problem