flutter-webrtc / callkeep

iOS CallKit and Android ConnectionService for Flutter
MIT License
130 stars 139 forks source link

CallKeep is not working on color os and oxygen os android 11 #149

Open bilalgodesto opened 2 years ago

bilalgodesto commented 2 years ago

I have implement flutter webrtc and callkeep successfully. It is working fine on android [samsung] and ios devices but when i try to use same code on android devices [realme (Color v11) , OnePlus Nord2 5G Android OxygenOS version 11.3 ] it has stopped working and not showing callscreen.

The following code is not showing callwindow but working fine on IOS and android [Samsung]

try {
      await _callKeep.displayIncomingCall(
        uuid,
        uuid,
        localizedCallerName: callerName,
        hasVideo: true,
      );
    } catch (e) {
      print('EXCEPTION AT dISPLAY CALL:: ${e.toString()}');
    }