flutter_call_kit icon indicating copy to clipboard operation
flutter_call_kit copied to clipboard

No implementation found for method startCall

Open stuartwk opened this issue 5 years ago • 6 comments

When executing await _callKit.startCall(currentCallId, handle, localizedCallerName); I am getting the error MissingPluginException (MissingPluginException(No implementation found for method startCall on channel com.peerwaya/flutter_callkit_plugin)). The plugin is installed and in my Podfile I have it set to platform :ios, '10.0'. Anyone else run into this problem or have any idea how to resolve it? I have tried running flutter clean, as well as completely deleting the app from my phone and reinstalling it.

stuartwk avatar Dec 31 '19 11:12 stuartwk

me too

cuijinfeng68 avatar Jan 02 '20 08:01 cuijinfeng68

@peerwaya any update on this? It seems like multiple users are having the same issue. Any idea on how to resolve it?

stuartwk avatar Jan 12 '20 04:01 stuartwk

I have the same issue

Nico04 avatar Jan 15 '20 14:01 Nico04

I believe the version on pub is not the same as the GitHub version. Might just have to do this for now.

  flutter_call_kit:
    git: https://github.com/peerwaya/flutter_call_kit.git

VictorUvarov avatar Jan 16 '20 09:01 VictorUvarov

I believe the version on pub is not the same as the GitHub version. Might just have to do this for now.

  flutter_call_kit:
    git: https://github.com/peerwaya/flutter_call_kit.git

Even when I use this solution I get the same error :(

BradyEdgar94 avatar Jul 23 '20 17:07 BradyEdgar94

maybe your flutter is using a cached version? Try deleting you cache folders:

rm -rf ~/.pub-cache

or

Try to being more specific with the package.

  flutter_call_kit:
    git: 
       url: https://github.com/peerwaya/flutter_call_kit.git
       ref: 80b7fae

VictorUvarov avatar Jul 23 '20 18:07 VictorUvarov