You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using Airship_Flutter with another method channel . After airship initialization code, one of my method channel stopped working. When we commented airship code , method channel started working.
That fix is if its always broken in release mode which we might need still. I think this might be a possible solution - la-haus/flutter-twilio-conversations#4
This might take us some time to figure out if its not just a mismatch of attach/detach calls
This issue looks not related to onAttachedToEngine. Let me know , if you know more details. My code base is too big , so giving sample code is not feasible.
Hi Team,
Effected Airship Version : 7.5.0
We are using Airship_Flutter with another method channel . After airship initialization code, one of my method channel stopped working. When we commented airship code , method channel started working.
Airship.takeOff(config);
Airship.push.android.setBackgroundPushReceivedHandler(backgroundMessageHandler);
These two lines are stopping method channel. On Click on one button, We are calling this line in Android.
ValidicPackagePlugin.methodChannel.invokeMethod("result",nativeData)
Same kind of issue was in Firebase Messaging . Kindly check this ticket
firebase/flutterfire#9689
Solution was available on this ticket.
firebase/flutterfire#9446 (comment)
They come with solutions that i tried on airship code too. It is not working with airship_flutter
@pragma('vm:entry-point')
Future _firebaseMessagingBackgroundHandler(RemoteMessage message) async {
// handle message
}
I tried same with airship_flutter and it is not working.
@pragma('vm:entry-point')
Future backgroundMessageHandler(PushReceivedEvent event) async {
debugPrint("Background Push Received $event");
}
Any support will be highly appreciated.
The text was updated successfully, but these errors were encountered: