ConnectyCube / connectycube-flutter-call-kit

A Flutter plugin for displaying call screen when the app in the background or terminated.
https://developers.connectycube.com/flutter
Apache License 2.0
57 stars 78 forks source link

Accept button on incoming call not working in terminated state (Android / Flutter) #142

Closed prashantJangidSys closed 6 months ago

prashantJangidSys commented 7 months ago

Flutter version -Channel stable, 3.16.5 Connectycube callkit version - 2.7.0

I'm facing the issue when I accept the incoming call in terminated state . The methods which are specified in the library documentation is not implemented in the code sample also. -E/FlutterConnectycubeBackgroundExecutor(18896): action_call_incoming background handler has not been registered. E/FlutterConnectycubeBackgroundExecutor(18896): action_call_accept background handler has not been registered.

This issue is not raised in older versions of the library , but not working as required in latest update. Feel free to provide a solution or suggestions if you have any! Your input is greatly appreciated. Thank you!

TatankaConCube commented 6 months ago

these logs just mean that the callbacks onCallAcceptedWhenTerminated and onCallIncomingWhenTerminated were not implemented in your app. these logs were reworked in this pull request

The methods which are specified in the library documentation is not implemented in the code sample also.

there are specific callbacks and we don't need them in our sample

This issue is not raised in older versions of the library

you can use older version if you don't require new functionality. also you can be free do investigate the issue in the newest versions and do pull request with fixes. as you can see it is an open-source project and every developer can propose any fixes or features

prashantJangidSys commented 6 months ago

Thank you for your support