Markus Aksli

Results 26 comments of Markus Aksli

Not seeing this myself so labeling this based on the report.

I'm seeing this issue as well with `cloud_functions: ^3.0.3` so labeling it for now. It doesn't seem intended to just throw `internal` with no other information. flutter doctor -v ```...

Hi @Michael-Eliosov The log you provided seems to be related to the issue but just a warning log. Could you provide the actual error with a stacktrace? Thank you

Have you overridden the Firebase native SDK version in `build.gradle` or done any similar native setup?

Can't reproduce this but I'll label it for some further investigation

Reproducible on the latest master `1.21.0-2.0.pre.94`. flutter doctor -v ``` [√] Flutter (Channel master, 1.21.0-2.0.pre.94, on Microsoft Windows [Version 10.0.18362.900], locale et-EE) • Flutter version 1.21.0-2.0.pre.94 at C:\Development\flutter_master • Framework...

Still the case in the latest version of gallery [`b5e9c40`](https://github.com/flutter/gallery/tree/b5e9c40fd7100ed271ad3f9e303d243764c9cfa4) built with latest master `1.23.0-8.0.pre.164`. flutter doctor -v ``` [√] Flutter (Channel master, 1.23.0-8.0.pre.164, on Microsoft Windows [Version 10.0.19041.508], locale...

Hi @aytunch On iOS you would need to add `"content_available": true,` to the message payload to temporarily wake the app and trigger a background message callback. Are you including this...

Does the background callback work if you send a notification through FCM? Such as ```json { "notification":{ "title": "This is the title", "body": "This is the body", }, "content_available": true,...

My suspicion is that in this case `contentAvailable` is not being set correctly. In this case, it will seem like it is doing nothing. The payload you sent seems to...