Open Allamprabhu11 opened 4 months ago
Hi,
For iOS I have handled type is videocall 1 or 0 to deferentate is audio or video call, and it working fine. But for Android i have config as,
Future showCallkitIncoming(String uuid, dynamic extras) async { if (!AppConstants.mobileOnly) { return; } final params = CallKitParams( id: uuid, nameCaller: callerName, appName: 'Intercommz', avatar: callerPic, // handle: '0123456789', type: 0 or 1 , // based on flag duration: 30000, textAccept: 'Accept', textDecline: 'Decline',
so this is not working to display the type of call in Android.
Can some help me in this
Hi,
For iOS I have handled type is videocall 1 or 0 to deferentate is audio or video call, and it working fine. But for Android i have config as,
Future showCallkitIncoming(String uuid, dynamic extras) async {
if (!AppConstants.mobileOnly) {
return;
}
final params = CallKitParams(
id: uuid,
nameCaller: callerName,
appName: 'Intercommz',
avatar: callerPic,
// handle: '0123456789',
type: 0 or 1 , // based on flag
duration: 30000,
textAccept: 'Accept',
textDecline: 'Decline',
so this is not working to display the type of call in Android.
Can some help me in this