flutter_callkit_incoming
flutter_callkit_incoming copied to clipboard
Incoming call notification not appear after update to Flutter 3.3 (Android)
I use flutter_callkit_incoming: ^1.0.2+2 only with Android at Flutter 2.10.3 and all worked fine. After updating the project to Flutter 3.3 in debug mode:
- all work well In release mode (after building in Codemagic CI/CD)
- calls in background and terminated states stopped working
- calls in the foreground (when the app is open) work well. No errors in Sentry, push notification works well App has "Ignore Battery Optimization" permission
Channel name seems like giving this issue.
I'm also facing same issue, breaking my head to solve it. Anyone got it fix?
The same issue after updating to Flutter 3.3.+
@idrats @santhoshrao519 did you try with Flutter 3.0, not 3.3? Maybe the package works with 3.0?
@booooohdan yes, there were no problem on Flutter 3.0.5 But we can not stay on 3.0.5 because of other packages updates
The same issue after updating to Flutter 3.3.4
downgraded to flutter 3.0.5, when i try with getActiveCalls() I'm getting Unhandled Exception: PlatformException(error, Missing type parameter., , null) exception in app terminated state
Hi guys I am facing the same issue in debug it works fine but not working in the release even I try 3.3.4 and 3.3.5 same issue is not working in the release any other solution
@jimykhan Try
@pragma('vm:entry-point')
Future
Is this being looked at?
@pragma('vm:entry-point') Future _firebaseMessagingBackgroundHandler(RemoteMessage message) async { // code here }
Resolved