CloudWebRTC

Results 280 comments of CloudWebRTC

There is no direct interaction between callkeep and webrtc. You need to use push to wake up the app that integrates callkeep, and then establish actual communication through webrtc offer/answer.

@JayPerfetto @Chinmay-KB Hey, yes, I have realized the importance of documentation for developers. Currently, I am the only one who maintains flutter-webrtc community, and there is not much spare time,...

@ahmedJD You can use `flutter run --release|--profile`, so that you can still be woken up after killing the app on iOS,

you can use it like this: ```dart Future myBackgroundMessageHandler(Map message) { print('backgroundMessage: message => ${message.toString()}'); Map payload = message['data'] as Map; String callerId = payload['caller_id'] as String; String callerName =...

Yes, documentation will be added soon.

payload example: ```json { "caller_id": "+8618612345678", "caller_name": "hello", "caller_id_type": "number", "has_video": "false", } ```

@ghenry you mean the custom icon in the answering interface?

I don’t see where I can set it. Should it be the default icon of the app?

Should only need to add `imageName` in the options of setup method. https://github.com/flutter-webrtc/callkeep/blob/master/ios/Classes/CallKeep.m#L589 https://github.com/flutter-webrtc/callkeep/blob/master/example/lib/main.dart#L282 ``` 'ios': { 'appName': 'CallKeepDemo', 'imageName': 'AppIcon-VoIPKit', }, ```

Please try this commit https://github.com/flutter-webrtc/callkeep/commit/cc57761da91c6e8814156c2e1f3110b2bd8b0910