ConnectyCube / connectycube-flutter-samples

Code samples for Flutter, based on ConnectyCube platform
https://developers.connectycube.com/flutter/
Apache License 2.0
85 stars 90 forks source link

Declining the call from the push notifications while the app is killed it doesn’t send an event to the other participant #334

Closed radyhaggag closed 4 months ago

radyhaggag commented 5 months ago

Specify the sample to which the issue belongs (use [x]): [] Conference Calls sample

Platform (use [x]) [] Android

Describe the bug: When decline the call from the push notifications while the app is killed it doesn’t send an event to the other participant, so after reject the call there is no action on the host side.

TatankaConCube commented 5 months ago

what the difference is between the current ticket and this one? does your user send the signaling message/notification about rejecting the call? or needed callbacks don't call? where exactly problem is?

radyhaggag commented 5 months ago

what the difference

The difference is this ticket the bug is occurred when the app is killed and the old one was occur any time we reject the call, the old has solved but this not.

TatankaConCube commented 5 months ago

do you receive an event to the callback onCallRejectedWhenTerminated? do you send a suitable signaling message from it?

radyhaggag commented 5 months ago

do you receive an event to the callback onCallRejectedWhenTerminated? do you send a suitable signaling message from it?

No, we send everything exist on the sample.

@pragma('vm:entry-point') Future onCallRejectedWhenTerminated(CallEvent callEvent) async { logger.i( '[PushNotificationsManager][onCallRejectedWhenTerminated] callEvent: $callEvent', );

var meetingId = callEvent.userInfo?[PARAM_MEETING_ID]; if (meetingId == null) return;

ConnectyCubeConfigManager.initConnectycubeContextLess();

var callMsgList = buildCallMessages(callEvent.sessionId, meetingId, [callEvent.callerId]); for (final callMsg in callMsgList) { callMsg.properties[SIGNAL_TYPE_REJECT_CALL] = '1'; callMsg.properties[PARAM_BUSY] = 'false'; }

for (final msg in callMsgList) { sendSystemMessage(msg.recipientId!, msg.properties); }

var sendRejectCallMessage = callMsgList.map((msg) { return sendSystemMessage(msg.recipientId!, msg.properties); }).toList();

var sendPushAboutReject = sendPushAboutRejectFromKilledState({ PARAM_CALL_TYPE: callEvent.callType, PARAM_SESSION_ID: callEvent.sessionId, PARAM_CALLER_ID: callEvent.callerId, PARAM_CALLER_NAME: callEvent.callerName, PARAM_CALL_OPPONENTS: callEvent.opponentsIds.join(','), // PARAM_MEETING_ID: meetingId, // todo: remove this if no result PARAM_USER_INFO: {PARAM_MEETING_ID: meetingId}, }, callEvent.callerId);

return Future.wait([...sendRejectCallMessage, sendPushAboutReject]) .then((result) { return Future.value(); }); }

TatankaConCube commented 5 months ago

but you said before, you will use your internal chat feature for signaling, but in this example, you send the signaling message over the ConnectyCube System messages feature. why? you need to use your signaling everywhere you need

radyhaggag commented 5 months ago

No, we use our chat only for messages "you send text, i send you text" only just normal chat fro send text without notifications, but the notifications we use your service and we login the users to connectycube chat when open the app.

TatankaConCube commented 5 months ago

could you please provide a full log from both sides (caller and receiver) during receiving and rejecting the call?

radyhaggag commented 5 months ago

This logs when the two apps on the foreground

W/uage.taaly.tes(26916): Accessing hidden field Landroid/view/ViewGroup;->mFirstTouchTarget:Landroid/view/ViewGroup$TouchTarget; (unsupported, reflection, allowed)
W/uage.taaly.tes(26916): Accessing hidden field Landroid/view/ViewGroup$TouchTarget;->child:Landroid/view/View; (unsupported, reflection, allowed)
I/flutter (26916): onChange -- VideoCallBloc, Change { currentState: Instance of 'VideoCallInitialState', nextState: Instance of 'StartSessionLoadingState' }
I/flutter (26916): CB-SDK: : =========================================================
I/flutter (26916): === REQUEST ==== c304c785-9138-4232-9f9f-33d450e7e650 ===
I/flutter (26916): REQUEST
I/flutter (26916):   GET https://api.connectycube.com/users/v2?login=8EYitVxZ0BaT4YEaEHnAN6r9WRy1
I/flutter (26916): HEADERS
I/flutter (26916):   {Content-type: application/json, ConnectyCube-REST-API-Version: 0.1.1, CB-SDK: Flutter 2.11.2, CB-Token: 425C07C38A605F51BD8697C9700EBF7589F8}
I/flutter (26916): BODY
I/flutter (26916):
I/flutter (26916):
I/flutter (26916): CB-SDK: : *********************************************************
I/flutter (26916): *** RESPONSE *** 200 *** c304c785-9138-4232-9f9f-33d450e7e650 ***
I/flutter (26916): HEADERS
I/flutter (26916):   {cb-token-expirationdate: 2024-01-30 15:20:35 UTC, connection: keep-alive, date: Tue, 30 Jan 2024 13:20:35 GMT, strict-transport-security: max-age=15768000; includeSubDomains, content-length: 504, access-control-expose-headers: CB-Token-ExpirationDate, Date, content-type: application/json; charset=utf-8, server: nginx/1.25.0}
I/flutter (26916): BODY
I/flutter (26916):   {"total_entries":1,"skip":0,"limit":100,"items":[{"_id":"65b418f3cf1208002f0fc292","id":11686103,"created_at":"2024-01-26T20:41:23Z","updated_at":"2024-01-30T13:06:54Z","last_request_at":"2024-01-30T13:06:54Z","login":"8EYitVxZ0BaT4YEaEHnAN6r9WRy1","email":"radyhaggag995@gmail.com","full_name":"test tutor ","custom_data":"tutor","timezone":null,"phone":null,"website":null,"twitter_id":null,"external_user_id":null,"facebook_id":null,"user_tags":null,"avatar":null,"external_id":null,"is_guest":null}]}
I/flutter (26916):
I/flutter (26916): CB-SDK: : =========================================================
I/flutter (26916): === REQUEST ==== 8eff0154-97cb-4f02-8da5-c72d64c33c08 ===
I/flutter (26916): REQUEST
I/flutter (26916):   GET https://api.connectycube.com/users/v2?login=p2BwhT122CTXxFCxzn04f5eJ5po2
I/flutter (26916): HEADERS
I/flutter (26916):   {Content-type: application/json, ConnectyCube-REST-API-Version: 0.1.1, CB-SDK: Flutter 2.11.2, CB-Token: 425C07C38A605F51BD8697C9700EBF7589F8}
I/flutter (26916): BODY
I/flutter (26916):
I/flutter (26916):
I/flutter (26916): CB-SDK: : *********************************************************
I/flutter (26916): *** RESPONSE *** 200 *** 8eff0154-97cb-4f02-8da5-c72d64c33c08 ***
I/flutter (26916): HEADERS
I/flutter (26916):   {cb-token-expirationdate: 2024-01-30 15:20:35 UTC, connection: keep-alive, date: Tue, 30 Jan 2024 13:20:35 GMT, strict-transport-security: max-age=15768000; includeSubDomains, content-length: 515, access-control-expose-headers: CB-Token-ExpirationDate, Date, content-type: application/json; charset=utf-8, server: nginx/1.25.0}
I/flutter (26916): BODY
I/flutter (26916):   {"total_entries":1,"skip":0,"limit":100,"items":[{"_id":"65b4121029d6c5002fd9f3ec","id":11685972,"created_at":"2024-01-26T20:12:00Z","updated_at":"2024-01-30T13:20:35Z","last_request_at":"2024-01-30T13:20:35Z","login":"p2BwhT122CTXxFCxzn04f5eJ5po2","email":"radyhaggagradysherif@gmail.com","full_name":"test stagging","custom_data":"student","timezone":null,"phone":null,"website":null,"twitter_id":null,"external_user_id":null,"facebook_id":null,"user_tags":null,"avatar":null,"external_id":null,"is_guest":null}]}
I/flutter (26916):
I/flutter (26916): CB-SDK: : [_startCall] call type 1
I/flutter (26916): onChange -- VideoCallBloc, Change { currentState: Instance of 'StartSessionLoadingState', nextState: Instance of 'StartSessionSuccessState' }
I/flutter (26916): CB-SDK: : =========================================================
I/flutter (26916): === REQUEST ==== ae1544e0-f41e-49ba-9809-f3ee1e601c2b ===
I/flutter (26916): REQUEST
I/flutter (26916):   POST https://api.connectycube.com/meetings
I/flutter (26916): HEADERS
I/flutter (26916):   {Content-type: application/json, ConnectyCube-REST-API-Version: 0.1.1, CB-SDK: Flutter 2.11.2, CB-Token: 425C07C38A605F51BD8697C9700EBF7589F8}
I/flutter (26916): BODY
I/flutter (26916):   {"name":"Conference Call","start_date":1706620857572,"end_date":1706622657572,"attendees":[{"id":11686103}],"chat":false,"record":false,"public":false,"scheduled":false,"notify":false,"notify_before":null}
I/flutter (26916):
I/flutter (26916): CB-SDK: : *********************************************************
I/flutter (26916): *** RESPONSE *** 200 *** ae1544e0-f41e-49ba-9809-f3ee1e601c2b ***
I/flutter (26916): HEADERS
I/flutter (26916):   {cb-token-expirationdate: 2024-01-30 15:20:36 UTC, connection: keep-alive, date: Tue, 30 Jan 2024 13:20:36 GMT, strict-transport-security: max-age=15768000; includeSubDomains, content-length: 354, access-control-expose-headers: CB-Token-ExpirationDate, Date, content-type: application/json; charset=utf-8, server: nginx/1.25.0}
I/flutter (26916): BODY
I/flutter (26916):   {"_id":"65b8f7a4cf1208002f10baff","name":"Conference Call","start_date":1706620857572,"end_date":1706622657572,"attendees":[{"id":11686103}],"public":false,"scheduled":false,"record":false,"created_at":"2024-01-30T13:20:36Z","updated_at":"2024-01-30T13:20:36Z","host_id":11685972,"notify":false,"notify_before":null,"chat_dialog_id":null,"timezone":null}
I/flutter (26916):
I/flutter (26916): CB-SDK: : createSession userId= 11685972
I/flutter (26916): 2024-01-30T15:20:58.369804: CB-SDK: : connect to wss://janus.connectycube.com:8989, janus-protocol
I/flutter (26916): 2024-01-30T15:20:58.385604: CB-SDK: : SND(0): {"janus":"create","session_id":null,"transaction":"26a23d71-1b7e-4976-840c-3cd37cc1839e","token":null}
I/flutter (26916): 2024-01-30T15:20:59.587869: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "success",
I/flutter (26916):    "transaction": "26a23d71-1b7e-4976-840c-3cd37cc1839e",
I/flutter (26916):    "data": {
I/flutter (26916):       "id": 1232016110205478
I/flutter (26916):    }
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.success, sessionId=null}
I/flutter (26916): 2024-01-30T15:20:59.597789: CB-SDK: JanusSignaler: startAutoSendPresence
I/[CIO]   (26916): track screen view event N/A
D/[CIO]   (26916): track screen view event N/A attributes: {}
I/[CIO]   (26916): ignoring track screen view event N/A because no profile currently identified
I/flutter (26916): CB-SDK: : Can't perform operation [setMicrophoneMute], cause 'localStream' not initialised
I/flutter (26916): 2024-01-30T15:20:59.631956: CB-SDK: : SND(0): {"janus":"attach","session_id":1232016110205478,"transaction":"7ecdde62-358f-4e4c-90fe-61d182961eff","token":null,"plugin":"janus.plugin.videoroom"}
I/flutter (26916): onCreate -- ChatV2Bloc
I/flutter (26916): CB-SDK: PrivateCallLayout: [build]
I/flutter (26916): 2024-01-30T15:20:59.995764: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "success",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "7ecdde62-358f-4e4c-90fe-61d182961eff",
I/flutter (26916):    "data": {
I/flutter (26916):       "id": 4444357344620434
I/flutter (26916):    }
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.success, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:00.019918: CB-SDK: JanusSignaler: attachPlugin wsDataPacket= WsPacket{messageType=Type.success, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:00.025108: CB-SDK: : SND(0): {"janus":"message","session_id":1232016110205478,"transaction":"6a220b2d-7a8e-4bd4-a22f-4a34d2efe902","token":null,"handle_id":4444357344620434,"body":{"id":11685972,"ptype":"publisher","room":"65b8f7a4cf1208002f10baff","display":"publisher","request":"join"}}
I/flutter (26916): 2024-01-30T15:21:00.207131: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "6a220b2d-7a8e-4bd4-a22f-4a34d2efe902"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:00.226183: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "event",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "6a220b2d-7a8e-4bd4-a22f-4a34d2efe902",
I/flutter (26916):    "sender": 4444357344620434,
I/flutter (26916):    "plugindata": {
I/flutter (26916):       "plugin": "janus.plugin.videoroom",
I/flutter (26916):       "data": {
I/flutter (26916):          "videoroom": "joined",
I/flutter (26916):          "room": "65b8f7a4cf1208002f10baff",
I/flutter (26916):          "description": "Room 65b8f7a4cf1208002f10baff",
I/flutter (26916):          "id": 11685972,
I/flutter (26916):          "private_id": 1915475809,
I/flutter (26916):          "publishers": []
I/flutter (26916):       }
I/flutter (26916):    }
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.event, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:00.235174: CB-SDK: JanusSignaler: JoinEvent publishers= [] , subscribers= null
I/flutter (26916): 2024-01-30T15:21:00.236391: CB-SDK: : onJoinEvent
I/flutter (26916): 2024-01-30T15:21:00.242119: CB-SDK: ConferenceSession: [onPeerConnectionStateChanged] the connection state of publisher changed to PeerConnectionState.RTC_CONNECTION_NEW
I/flutter (26916): 2024-01-30T15:21:00.242901: CB-SDK: ConferenceSession: Make new channel with id: 1, Instance of 'ConferencePeerConnection'
I/flutter (26916): CB-SDK: _ConversationCallScreenState: join session= []
I/org.webrtc.Logging(26916): NativeLibrary: Loading native library: jingle_peerconnection_so
I/org.webrtc.Logging(26916): NativeLibrary: Loading library: jingle_peerconnection_so
I/flutter (26916): 2024-01-30T15:21:00.252526: CB-SDK: : SND(0): {"janus":"message","session_id":1232016110205478,"transaction":"808c3607-c4d0-410a-ad85-c84c9eaf8b77","token":null,"handle_id":4444357344620434,"body":{"bitrate":0,"request":"configure"}}
I/flutter (26916): CB-SDK: : {parameters: {message: Incoming Video call, call_type: 1, session_id: f65d386e-aa0e-4883-8dbd-ae8b365b0dce, caller_id: 11685972, caller_name: test stagging, call_opponents: 11686103, photo_url: null, user_info: {"meeting_id":"65b8f7a4cf1208002f10baff"}, start_call_date: null, signal_type: startCall, ios_voip: 1, expiration: 0, meeting_id: 65b8f7a4cf1208002f10baff}, notificationType: push, environment: development, eventType: null, usersIds: [11686103], externalUsersIds: [], usersTagsAll: [], usersTagsAny: [], usersTagsExclude: [], date: null, endDate: null, period: null, name: null}
I/flutter (26916): CB-SDK: : =========================================================
I/flutter (26916): === REQUEST ==== 70f2cf6a-c508-4505-84a2-17f1b76641f1 ===
I/flutter (26916): REQUEST
I/flutter (26916):   POST https://api.connectycube.com/chat/Message/system
I/flutter (26916): HEADERS
I/flutter (26916):   {Content-type: application/json, ConnectyCube-REST-API-Version: 0.1.1, CB-SDK: Flutter 2.11.2, CB-Token: 425C07C38A605F51BD8697C9700EBF7589F8}
I/flutter (26916): BODY
I/flutter (26916):   {"recipientId":11686103,"meeting_id":"65b8f7a4cf1208002f10baff","session_id":"f65d386e-aa0e-4883-8dbd-ae8b365b0dce","startCall":"1","call_opponents":"11686103","call_type":"1","caller_name":"test stagging"}
I/flutter (26916):
I/org.webrtc.Logging(26916): PeerConnectionFactory: PeerConnectionFactory was initialized without an injected Loggable. Any existing Loggable will be deleted.
I/flutter (26916): CB-SDK: : =========================================================
I/flutter (26916): === REQUEST ==== bdcb55e5-c4e1-4b68-95d1-a0c27e7ac854 ===
I/flutter (26916): REQUEST
I/flutter (26916):   POST https://api.connectycube.com/events
I/flutter (26916): HEADERS
I/flutter (26916):   {Content-type: application/json, ConnectyCube-REST-API-Version: 0.1.1, CB-SDK: Flutter 2.11.2, CB-Token: 425C07C38A605F51BD8697C9700EBF7589F8}
I/flutter (26916): BODY
I/flutter (26916):   {"event":{"id":null,"created_at":null,"updated_at":null,"notification_type":"push","environment":"development","message":"eyJtZXNzYWdlIjoiSW5jb21pbmcgVmlkZW8gY2FsbCIsImNhbGxfdHlwZSI6MSwic2Vzc2lvbl9pZCI6ImY2NWQzODZlLWFhMGUtNDg4My04ZGJkLWFlOGIzNjViMGRjZSIsImNhbGxlcl9pZCI6MTE2ODU5NzIsImNhbGxlcl9uYW1lIjoidGVzdCBzdGFnZ2luZyIsImNhbGxfb3Bwb25lbnRzIjoiMTE2ODYxMDMiLCJwaG90b191cmwiOm51bGwsInVzZXJfaW5mbyI6IntcIm1lZXRpbmdfaWRcIjpcIjY1YjhmN2E0Y2YxMjA4MDAyZjEwYmFmZlwifSIsInN0YXJ0X2NhbGxfZGF0ZSI6bnVsbCwic2lnbmFsX3R5cGUiOiJzdGFydENhbGwiLCJpb3Nfdm9pcCI6MSwiZXhwaXJhdGlvbiI6MCwibWVldGluZ19pZCI6IjY1YjhmN2E0Y2YxMjA4MDAyZjEwYmFmZiJ9","user":{"ids":"11686103"}}}
I/flutter (26916):
I/org.webrtc.Logging(26916): WebRtcAudioManagerExternal: Sample rate is set to 48000 Hz
I/org.webrtc.Logging(26916): WebRtcAudioManagerExternal: Sample rate is set to 48000 Hz
I/org.webrtc.Logging(26916): JavaAudioDeviceModule: createAudioDeviceModule
I/org.webrtc.Logging(26916): JavaAudioDeviceModule: HW NS will be used.
I/org.webrtc.Logging(26916): JavaAudioDeviceModule: HW AEC will be used.
I/org.webrtc.Logging(26916): WebRtcAudioEffectsExternal: ctor@[name=main, id=2]
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: ctor@[name=main, id=2]
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: ctor@[name=main, id=2]
I/org.webrtc.Logging(26916): EglBase14Impl: Using OpenGL ES version 2
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: enableBuiltInAEC(true)
I/org.webrtc.Logging(26916): WebRtcAudioEffectsExternal: setAEC(true)
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: enableBuiltInNS(true)
I/org.webrtc.Logging(26916): WebRtcAudioEffectsExternal: setNS(true)
I/org.webrtc.Logging(26916): PeerConnectionFactory: onNetworkThreadReady
I/org.webrtc.Logging(26916): PeerConnectionFactory: onWorkerThreadReady
I/org.webrtc.Logging(26916): PeerConnectionFactory: onSignalingThreadReady
I/FlutterWebRTCPlugin(26916): getUserMedia(audio): mandatory: [], optional: [googNoiseSuppression: true, googEchoCancellation: true, echoCancellation: true, googEchoCancellation2: true, googDAEchoCancellation: true]
I/FlutterWebRTCPlugin(26916): getUserMedia(video): ConstraintsMap{mMap={frameRate=25, facingMode=user, width=1280, height=720}}
I/CameraManagerGlobal(26916): Connecting to camera service
D/CameraExtStub(26916): init android.hardware.camera2.impl.CameraExtImplXiaoMi
D/CameraInjector(26916): updateCloudCameraControllerInfoAsync: E
D/CameraInjector(26916): updateCloudCameraControllerInfoAsync: X
W/libc    (26916): Access denied finding property "vendor.camera.aux.packagelist"
W/CameraManagerGlobal(26916): [soar.cts] ignore the status update of camera: 100
W/libc    (26916): Access denied finding property "vendor.camera.aux.packagelist"
W/CameraManagerGlobal(26916): [soar.cts] ignore the status update of camera: 101
W/libc    (26916): Access denied finding property "vendor.camera.aux.packagelist"
W/CameraManagerGlobal(26916): [soar.cts] ignore the status update of camera: 20
W/libc    (26916): Access denied finding property "vendor.camera.aux.packagelist"
W/CameraManagerGlobal(26916): [soar.cts] ignore the status update of camera: 21
W/libc    (26916): Access denied finding property "vendor.camera.aux.packagelist"
W/CameraManagerGlobal(26916): [soar.cts] ignore the status update of camera: 22
W/libc    (26916): Access denied finding property "vendor.camera.aux.packagelist"
W/CameraManagerGlobal(26916): [soar.cts] ignore the status update of camera: 61
W/libc    (26916): Access denied finding property "vendor.camera.aux.packagelist"
W/libc    (26916): Access denied finding property "vendor.camera.aux.packagelist"
W/CameraManagerGlobal(26916): ignore the torch status update of camera: 100
W/libc    (26916): Access denied finding property "vendor.camera.aux.packagelist"
W/CameraManagerGlobal(26916): ignore the torch status update of camera: 21
W/libc    (26916): Access denied finding property "vendor.camera.aux.packagelist"
W/CameraManagerGlobal(26916): ignore the torch status update of camera: 22
W/libc    (26916): Access denied finding property "vendor.camera.aux.packagelist"
W/CameraManagerGlobal(26916): ignore the torch status update of camera: 61
D/FlutterWebRTCPlugin(26916): Creating video capturer using Camera2 API.
W/libc    (26916): Access denied finding property "vendor.camera.aux.packagelist"
W/libc    (26916): Access denied finding property "vendor.camera.aux.packagelist"
D/FlutterWebRTCPlugin(26916): Create front camera 1 succeeded
I/org.webrtc.Logging(26916): EglBase14Impl: Using OpenGL ES version 2
I/org.webrtc.Logging(26916): CameraCapturer: startCapture: 1280x720@25
D/FlutterWebRTCPlugin(26916): changeCaptureFormat: 1280x720@25
D/FlutterWebRTCPlugin(26916): MediaStream id: f0cd9608-2250-4408-acfa-d638422f9be4
I/AudioManager(26916): In isSpeakerphoneOn(), calling application: com.language.taaly.test
I/flutter (26916): CB-SDK: _ConversationCallScreenState: _addLocalMediaStream
I/flutter (26916): CB-SDK: _ConversationCallScreenState: [_addMediaStream] userId: 11685972, isLocalStream: true
I/org.webrtc.Logging(26916): Camera2Session: Create new camera2 session on camera 1
I/org.webrtc.Logging(26916): Camera2Session: start
I/AudioManager(26916): In stopBluetoothSco(), calling application: com.language.taaly.test
I/AudioManager(26916): In setSpeakerphoneOn(), on: true, calling application: com.language.taaly.test
I/flutter (26916): CB-SDK: PeerConnection: _createOffer for opponent 1
I/flutter (26916): 2024-01-30T15:21:00.428569: CB-SDK: ConferenceSession: [onPeerConnectionStateChanged] the connection state of publisher changed to PeerConnectionState.RTC_CONNECTION_PENDING
I/org.webrtc.Logging(26916): Camera2Session: Available preview sizes: [2304x1728, 2160x1080, 1920x1440, 1920x1080, 1600x1200, 1560x720, 1440x1080, 1440x720, 1280x960, 1280x768, 1280x720, 1024x738, 1024x768, 800x600, 800x480, 720x480, 640x480, 640x360, 352x288, 320x240, 176x144]
I/org.webrtc.Logging(26916): Camera2Session: Available fps ranges: [[15.0:15.0], [8.0:30.0], [30.0:30.0]]
I/org.webrtc.Logging(26916): Camera2Session: Using capture format: 1280x720@[8.0:30.0]
I/org.webrtc.Logging(26916): Camera2Session: Opening camera 1
D/FlutterWebRTCPlugin(26916): CameraEventsHandler.onCameraOpening: cameraName=1
W/libc    (26916): Access denied finding property "persist.vendor.camera.privapp.list"
D/CameraExtImplXiaoMi(26916): initCameraDevice: 1
I/flutter (26916): 2024-01-30T15:21:00.463222: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "808c3607-c4d0-410a-ad85-c84c9eaf8b77"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:00.471700: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "event",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "808c3607-c4d0-410a-ad85-c84c9eaf8b77",
I/flutter (26916):    "sender": 4444357344620434,
I/flutter (26916):    "plugindata": {
I/flutter (26916):       "plugin": "janus.plugin.videoroom",
I/flutter (26916):       "data": {
I/flutter (26916):          "videoroom": "event",
I/flutter (26916):          "room": "65b8f7a4cf1208002f10baff",
I/flutter (26916):          "configured": "ok"
I/flutter (26916):       }
I/flutter (26916):    }
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.event, sessionId=1232016110205478}
I/org.webrtc.Logging(26916): Camera2Session: Camera opened.
D/CameraDevice-JV-1(26916): waitUntilIdle: E. id = 1
D/CameraDevice-JV-1(26916): waitUntilIdle: X
I/org.webrtc.Logging(26916): EglRenderer: Initializing EglRenderer
I/org.webrtc.Logging(26916): EglRenderer: EglBase.create shared context
I/org.webrtc.Logging(26916): EglBase14Impl: Using OpenGL ES version 2
W/FlutterWebRTCPlugin(26916): FlutterRTCVideoRenderer.setVideoTrack, set video track to 10b60229-4799-4710-8b9d-c3d587f5193e
I/org.webrtc.Logging(26916): EglRenderer: Releasing.
I/org.webrtc.Logging(26916): EglRenderer: eglBase detach and release.
I/org.webrtc.Logging(26916): EglRenderer: Quitting render thread.
I/org.webrtc.Logging(26916): EglRenderer: Releasing done.
I/org.webrtc.Logging(26916): EglRenderer: Initializing EglRenderer
I/org.webrtc.Logging(26916): EglRenderer: EglBase.create shared context
I/org.webrtc.Logging(26916): EglBase14Impl: Using OpenGL ES version 2
I/flutter (26916): CB-SDK: PrivateCallLayout: [didUpdateWidget]
I/flutter (26916): CB-SDK: PrivateCallLayout: [build]
I/TRuntime.CctTransportBackend(26916): Making request to: https://firebaselogging-pa.googleapis.com/v1/firelog/legacy/batchlog
I/flutter (26916): CB-SDK: PeerConnection: onRenegotiationNeeded, connectionState: null
I/flutter (26916): 2024-01-30T15:21:00.653779: CB-SDK: ConferenceSession: onSendOffer
I/flutter (26916): 2024-01-30T15:21:00.657201: CB-SDK: : SND(0): {"janus":"message","session_id":1232016110205478,"transaction":"851be132-de48-454c-8831-d42c35a2600b","token":null,"handle_id":4444357344620434,"jsep":{"type":"offer","sdp":"v=0\r\no=- 1066637833646312101 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE 0 1 2 3\r\na=extmap-allow-mixed\r\na=msid-semantic: WMS f0cd9608-2250-4408-acfa-d638422f9be4\r\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 104 105 106 107 39 40 98 99 108 109 125\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:qLHc\r\na=ice-pwd:9Rny1SEefvQG5gHNtUarnDMd\r\na=ice-options:trickle renomination\r\na=fingerprint:sha-256 C8:B2:FD:C5:94:2B:85:29:DA:16:F4:09:C5:5B:17:73:94:04:65:07:3E:1A:12:94:F7:6E:BA:33:1B:C9:64:01\r\na=setup:actpass\r\na=mid:0\r\na=extmap:1 urn:ietf:params:rtp-hdrext:toffset\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:3 urn:3gpp:video-orientation\r\na=extmap:4 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na
I/org.webrtc.Logging(26916): Camera2Session: Camera capture session configured.
I/org.webrtc.Logging(26916): Camera2Session: Using video stabilization.
I/org.webrtc.Logging(26916): Camera2Session: Auto-focus is not available.
I/org.webrtc.Logging(26916): Camera2Session: Camera device successfully started.
I/org.webrtc.Logging(26916): CameraCapturer: Create session done. Switch state: IDLE
I/org.webrtc.Logging(26916): SurfaceTextureHelper: Setting listener to org.webrtc.Camera2Session$CaptureSessionCallback$$ExternalSyntheticLambda0@c371eee
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: enableBuiltInAEC(true)
I/org.webrtc.Logging(26916): WebRtcAudioEffectsExternal: setAEC(true)
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: enableBuiltInNS(true)
I/org.webrtc.Logging(26916): WebRtcAudioEffectsExternal: setNS(true)
I/org.webrtc.Logging(26916): NetworkMonitor: Start monitoring with native observer -5476376658173830752 fieldTrialsString:
W/org.webrtc.Logging(26916): NetworkMonitorAutoDetect: Unable to obtain permission to request a cellular network.
D/FlutterWebRTCPlugin(26916): onIceGatheringChangeGATHERING
I/org.webrtc.Logging(26916): NetworkMonitorAutoDetect: Network handle: 604701118477 becomes available: 140
I/org.webrtc.Logging(26916): NetworkMonitorAutoDetect: handle: 604701118477 capabilities changed: [ Transports: CELLULAR Capabilities: SUPL&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED&NOT_VCN_MANAGED LinkUpBandwidth>=15000Kbps LinkDnBandwidth>=5302Kbps Specifier: <TelephonyNetworkSpecifier [mSubId = 1]> UnderlyingNetworks: Null]
I/org.webrtc.Logging(26916): NetworkMonitorAutoDetect: handle: 604701118477 link properties changed
I/flutter (26916): CB-SDK: PeerConnection: onSignalingState changed to RTCSignalingState.RTCSignalingStateHaveLocalOffer for opponent 1
I/flutter (26916): CB-SDK: PeerConnection: onIceGatheringState changed to RTCIceGatheringState.RTCIceGatheringStateGathering for opponent 1
I/flutter (26916): CB-SDK: BaseSession: onIceGatheringStateChanged state= RTCIceGatheringState.RTCIceGatheringStateGathering for userId= 1
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.053855: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "851be132-de48-454c-8831-d42c35a2600b"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.078203: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "event",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "851be132-de48-454c-8831-d42c35a2600b",
I/flutter (26916):    "sender": 4444357344620434,
I/flutter (26916):    "plugindata": {
I/flutter (26916):       "plugin": "janus.plugin.videoroom",
I/flutter (26916):       "data": {
I/flutter (26916):          "videoroom": "event",
I/flutter (26916):          "room": "65b8f7a4cf1208002f10baff",
I/flutter (26916):          "configured": "ok",
I/flutter (26916):          "audio_codec": "opus",
I/flutter (26916):          "video_codec": "vp8",
I/flutter (26916):          "streams": [
I/flutter (26916):             {
I/flutter (26916):                "type": "video",
I/flutter (26916):                "mindex": 0,
I/flutter (26916):                "mid": "0",
I/flutter (26916):                "codec": "vp8",
I/flutter (26916):                "simulcast": true
I/flutter (26916):             },
I/flutter (26916):             {
I/flutter (26916):                "type": "audio",
I/flutter (26916):                "mindex": 1,
I/flutter (26916):                "mid": "1",
I/flutter (26916):                "codec": "opus",
I/flutter (26916):                "fec": true
I/flutter (26916):             },
I/flutter (26916):             {
I/flutter (26916):                "type": "audio",
I/flutter (26916):                "mindex": 2,
I/flutter (26916):                "mid": "2",
I/flutter (26916):                "disabled": true
I/flutter (26916):             },
I/flutter (26916):             {
I/flutter (26916):                "type": "video",
I/flutter (26916):                "mindex": 3,
I/flutter (26916):                "mid": "3",
I/flutter (26916):                "disabled": true
I/flutter (26916):             }
I/flutter (26916):          ]
I/flutter (26916):       }
I/flutter (26916):    },
I/flutter (26916):    "jsep": {
I/flutter (26916):       "type": "answer",
I/flutter (26916):       "sdp": "v=0\r\no=- 1066637833646312101 2 IN IP4 34.193.127.90\r\ns=VideoRoom 65b8f7a4cf1208002f10baff\r\nt=0 0\r\na=group:BUNDLE 0 1 2 3\r\na=ice-options:trickle\r\na=fingerprint:sha-256 47:72:CF:11:72:F3:31:54:62:47:00:FC:A9:BD:B4:4E:44:63:56:FF:71:29:31:FC:A2:7B:21:35:E0:01:C1:9C\r\na=extmap-allow-mixed\r\na=msid-semantic: WMS *\r\nm=video 9 UDP/TLS/RTP/SAVPF 96 97\r\nc=IN IP4 34.193.127.90\r\na=recvonly\r\na=mid:0\r\na=rtcp-mux\r\na=ice-ufrag:0+ic\r\na=ice-pwd:zayr60aqrglAQ0awbo3MLH\r\na=ice-options:trickle\r\na=setup:active\r\na=rtpmap:96 VP8/90000\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=rtcp-fb:96 goog-remb\r\na=rtcp-fb:96 transport-cc\r\na=extmap:4 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=extmap:5 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\r\na=extmap:9 urn:ietf:params:rtp-hdrext:sdes:mid\r\na=extmap:10 urn:ietf:params:rtp-hdrext:sdes:rtp-stream-id\r\na=extmap:11 urn:ietf:params:rtp-hdrext:sdes:repaired-rtp-s
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: enableBuiltInAEC(true)
I/org.webrtc.Logging(26916): WebRtcAudioEffectsExternal: setAEC(true)
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: enableBuiltInNS(true)
I/org.webrtc.Logging(26916): WebRtcAudioEffectsExternal: setNS(true)
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: initPlayout(sampleRate=48000, channels=1, bufferSizeFactor=1.0)
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: byteBuffer.capacity: 960
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: minBufferSizeInBytes: 7688
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: createAudioTrackBeforeOreo
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: nativeOutputSampleRate: 48000
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: AudioTrack: session ID: 12313, channels: 1, sample rate: 48000, max gain: 1.0
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: AudioTrack: buffer size in frames: 3844
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: AudioTrack: buffer capacity in frames: 3844
I/org.webrtc.Logging(26916): VolumeLogger: start@[name=worker_thread - 27456, id=1348]
I/org.webrtc.Logging(26916): VolumeLogger: audio mode is: MODE_IN_COMMUNICATION
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: startPlayout
I/org.webrtc.Logging(26916): VolumeLogger: VOICE_CALL stream volume: 10 (max=11)
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: AudioTrackThread@[name=AudioTrackJavaThread, id=1358]
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: doAudioTrackStateCallback: 0
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onConnectionChangeCONNECTING
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): onIceCandidate
D/FlutterWebRTCPlugin(26916): CameraEventsHandler.onFirstFrameAvailable
I/org.webrtc.Logging(26916): HardwareVideoEncoder: initEncode name: OMX.qcom.video.encoder.vp8 type: VP8 width: 720 height: 1280 framerate_fps: 60 bitrate_kbps: 30 surface mode: true
I/OMXClient(26916): IOmx service obtained
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Format: {color-format=2130708361, i-frame-interval=3600, mime=video/x-vnd.on2.vp8, width=720, bitrate-mode=2, bitrate=30000, frame-rate=60.0, height=1280}
D/CodecSeeding(26916): Seed: codec OMX.qcom.video.encoder.vp8, mediatype video/x-vnd.on2.vp8, overrideable 1
D/CodecProperties(26916): setTuningValue(vq-target-bpp,0)
D/CodecProperties(26916): setFeatureValue(_vq_eligible.device,1)
D/CodecProperties(26916): setFeatureValue(_quality.target,1)
D/CodecSeeding(26916): Seed: codec OMX.qcom.video.encoder.vp8, mediatype video/x-vnd.on2.vp8, overrideable 0
D/VQApply (26916): minquality: applies only to VBR encoding
D/MediaCodec(26916): shapeMediaFormat: deltas(0): AMessage(what = 0x00000000) = {
D/MediaCodec(26916):   }
D/FlutterWebRTCPlugin(26916): onIceGatheringChangeCOMPLETE
D/MediaCodec(26916): flushMediametrics
D/FlutterWebRTCPlugin(26916): onSelectedCandidatePairChanged
I/ExtendedACodec(26916): setupVideoEncoder()
W/OMXUtils(26916): do not know color format 0x7fa30c06 = 2141391878
W/OMXUtils(26916): do not know color format 0x7fa30c04 = 2141391876
W/OMXUtils(26916): do not know color format 0x7fa30c00 = 2141391872
W/OMXUtils(26916): do not know color format 0x7fa30c09 = 2141391881
W/OMXUtils(26916): do not know color format 0x7fa30c0a = 2141391882
W/OMXUtils(26916): do not know color format 0x7fa30c08 = 2141391880
W/OMXUtils(26916): do not know color format 0x7fa30c07 = 2141391879
W/OMXUtils(26916): do not know color format 0x7f000789 = 2130708361
I/ACodec  (26916): [OMX.qcom.video.encoder.vp8] cannot encode HDR static metadata. Ignoring.
I/ACodec  (26916): setupVideoEncoder succeeded
I/ExtendedACodec(26916): [OMX.qcom.video.encoder.vp8] configure, AMessage : AMessage(what = 'conf', target = 1) = {
I/ExtendedACodec(26916):   int32_t color-format = 2130708361
I/ExtendedACodec(26916):   int32_t i-frame-interval = 3600
I/ExtendedACodec(26916):   string mime = "video/x-vnd.on2.vp8"
I/ExtendedACodec(26916):   int32_t width = 720
I/ExtendedACodec(26916):   int32_t bitrate-mode = 2
I/ExtendedACodec(26916):   int32_t bitrate = 30000
I/ExtendedACodec(26916):   float frame-rate = 60.000000
I/ExtendedACodec(26916):   int32_t height = 1280
I/ExtendedACodec(26916):   int32_t flags = 1
I/ExtendedACodec(26916):   int32_t encoder = 1
I/ExtendedACodec(26916): }
W/OMXUtils(26916): do not know color format 0x7f000789 = 2130708361
I/org.webrtc.Logging(26916): EglBase14Impl: Using OpenGL ES version 2
I/org.webrtc.Logging(26916): HardwareVideoEncoder: updateInputFormat format: {color-transfer=3, color-format=2130708361, slice-height=1280, mime=video/raw, width=720, stride=720, color-range=2, using-sw-read-often=0, color-standard=1, height=1280} stride: 720 sliceHeight: 1280 isSemiPlanar: true frameSizeBytes: 1382400
I/org.webrtc.Logging(26916): HardwareVideoEncoder: initEncode name: OMX.qcom.video.encoder.vp8 type: VP8 width: 360 height: 640 framerate_fps: 60 bitrate_kbps: 220 surface mode: true
I/OMXClient(26916): IOmx service obtained
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Format: {color-format=2130708361, i-frame-interval=3600, mime=video/x-vnd.on2.vp8, width=360, bitrate-mode=2, bitrate=220000, frame-rate=60.0, height=640}
D/VQApply (26916): minquality: applies only to VBR encoding
D/MediaCodec(26916): shapeMediaFormat: deltas(0): AMessage(what = 0x00000000) = {
D/MediaCodec(26916):   }
D/MediaCodec(26916): flushMediametrics
I/ExtendedACodec(26916): setupVideoEncoder()
W/OMXUtils(26916): do not know color format 0x7fa30c06 = 2141391878
W/OMXUtils(26916): do not know color format 0x7fa30c04 = 2141391876
W/OMXUtils(26916): do not know color format 0x7fa30c00 = 2141391872
W/OMXUtils(26916): do not know color format 0x7fa30c09 = 2141391881
W/OMXUtils(26916): do not know color format 0x7fa30c0a = 2141391882
W/OMXUtils(26916): do not know color format 0x7fa30c08 = 2141391880
W/OMXUtils(26916): do not know color format 0x7fa30c07 = 2141391879
W/OMXUtils(26916): do not know color format 0x7f000789 = 2130708361
I/ACodec  (26916): [OMX.qcom.video.encoder.vp8] cannot encode HDR static metadata. Ignoring.
I/ACodec  (26916): setupVideoEncoder succeeded
I/ExtendedACodec(26916): [OMX.qcom.video.encoder.vp8] configure, AMessage : AMessage(what = 'conf', target = 4) = {
I/ExtendedACodec(26916):   int32_t color-format = 2130708361
I/ExtendedACodec(26916):   int32_t i-frame-interval = 3600
I/ExtendedACodec(26916):   string mime = "video/x-vnd.on2.vp8"
I/ExtendedACodec(26916):   int32_t width = 360
I/ExtendedACodec(26916):   int32_t bitrate-mode = 2
I/ExtendedACodec(26916):   int32_t bitrate = 220000
I/ExtendedACodec(26916):   float frame-rate = 60.000000
I/ExtendedACodec(26916):   int32_t height = 640
I/ExtendedACodec(26916):   int32_t flags = 1
I/ExtendedACodec(26916):   int32_t encoder = 1
I/ExtendedACodec(26916): }
W/OMXUtils(26916): do not know color format 0x7f000789 = 2130708361
I/org.webrtc.Logging(26916): EglBase14Impl: Using OpenGL ES version 2
I/org.webrtc.Logging(26916): HardwareVideoEncoder: updateInputFormat format: {color-transfer=3, color-format=2130708361, slice-height=640, mime=video/raw, width=360, stride=360, color-range=2, using-sw-read-often=0, color-standard=4, height=640} stride: 360 sliceHeight: 640 isSemiPlanar: true frameSizeBytes: 345600
I/org.webrtc.Logging(26916): HardwareVideoEncoder: initEncode name: OMX.qcom.video.encoder.vp8 type: VP8 width: 180 height: 320 framerate_fps: 60 bitrate_kbps: 80 surface mode: true
I/OMXClient(26916): IOmx service obtained
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Format: {color-format=2130708361, i-frame-interval=3600, mime=video/x-vnd.on2.vp8, width=180, bitrate-mode=2, bitrate=80000, frame-rate=60.0, height=320}
D/VQApply (26916): minquality: applies only to VBR encoding
D/MediaCodec(26916): shapeMediaFormat: deltas(0): AMessage(what = 0x00000000) = {
D/MediaCodec(26916):   }
D/MediaCodec(26916): flushMediametrics
I/ExtendedACodec(26916): setupVideoEncoder()
W/OMXUtils(26916): do not know color format 0x7fa30c06 = 2141391878
W/OMXUtils(26916): do not know color format 0x7fa30c04 = 2141391876
W/OMXUtils(26916): do not know color format 0x7fa30c00 = 2141391872
W/OMXUtils(26916): do not know color format 0x7fa30c09 = 2141391881
W/OMXUtils(26916): do not know color format 0x7fa30c0a = 2141391882
W/OMXUtils(26916): do not know color format 0x7fa30c08 = 2141391880
W/OMXUtils(26916): do not know color format 0x7fa30c07 = 2141391879
W/OMXUtils(26916): do not know color format 0x7f000789 = 2130708361
I/ACodec  (26916): [OMX.qcom.video.encoder.vp8] cannot encode HDR static metadata. Ignoring.
I/ACodec  (26916): setupVideoEncoder succeeded
I/ExtendedACodec(26916): [OMX.qcom.video.encoder.vp8] configure, AMessage : AMessage(what = 'conf', target = 7) = {
I/ExtendedACodec(26916):   int32_t color-format = 2130708361
I/ExtendedACodec(26916):   int32_t i-frame-interval = 3600
I/ExtendedACodec(26916):   string mime = "video/x-vnd.on2.vp8"
I/ExtendedACodec(26916):   int32_t width = 180
I/ExtendedACodec(26916):   int32_t bitrate-mode = 2
I/ExtendedACodec(26916):   int32_t bitrate = 80000
I/ExtendedACodec(26916):   float frame-rate = 60.000000
I/ExtendedACodec(26916):   int32_t height = 320
I/ExtendedACodec(26916):   int32_t flags = 1
I/ExtendedACodec(26916):   int32_t encoder = 1
I/ExtendedACodec(26916): }
W/OMXUtils(26916): do not know color format 0x7f000789 = 2130708361
I/org.webrtc.Logging(26916): EglBase14Impl: Using OpenGL ES version 2
I/org.webrtc.Logging(26916): HardwareVideoEncoder: updateInputFormat format: {color-transfer=3, color-format=2130708361, slice-height=320, mime=video/raw, width=180, stride=180, color-range=2, using-sw-read-often=0, color-standard=4, height=320} stride: 180 sliceHeight: 320 isSemiPlanar: true frameSizeBytes: 86400
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: enableBuiltInAEC(true)
I/org.webrtc.Logging(26916): WebRtcAudioEffectsExternal: setAEC(true)
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: enableBuiltInNS(true)
I/org.webrtc.Logging(26916): WebRtcAudioEffectsExternal: setNS(true)
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: initRecording(sampleRate=48000, channels=1)
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: byteBuffer.capacity: 960
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: AudioRecord.getMinBufferSize: 3840
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: bufferSizeInBytes: 7680
D/FlutterWebRTCPlugin(26916): onConnectionChangeCONNECTED
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: createAudioRecordOnMOrHigher
D/AudioRecord(26916): set(): inputSource 7, sampleRate 48000, format 0x1, channelMask 0x10, frameCount 3840, notificationFrames 0, sessionId 0, transferType 0, flags 0, attributionSource AttributionSourceState{pid: -1, uid: 10527, packageName: com.language.taaly.test, attributionTag: (null), token: , renouncedPermissions: (null), next: []}uid -1, pid -1,isIsolated:0
I/org.webrtc.Logging(26916): WebRtcAudioEffectsExternal: enable(audioSession=12321)
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Releasing MediaCodec on output thread
I/org.webrtc.Logging(26916): WebRtcAudioEffectsExternal: AcousticEchoCanceler: was enabled, enable: true, is now: enabled
I/org.webrtc.Logging(26916): WebRtcAudioEffectsExternal: NoiseSuppressor: was enabled, enable: true, is now: enabled
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: AudioRecord: session ID: 12321, channels: 1, sample rate: 48000
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: AudioRecord: buffer size in frames: 3840
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: Number of active recording sessions: 0
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: startRecording
D/MediaCodec(26916): flushMediametrics
D/MediaCodec(26916): flushMediametrics
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Release on output thread done
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: scheduleLogRecordingConfigurationsTask
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: AudioRecordThread@[name=AudioRecordJavaThread, id=1374]
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: doAudioRecordStateCallback: START
I/OMXClient(26916): IOmx service obtained
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Format: {color-format=21, i-frame-interval=3600, mime=video/x-vnd.on2.vp8, width=360, bitrate-mode=2, bitrate=220000, frame-rate=6.0, height=640}
D/VQApply (26916): minquality: applies only to VBR encoding
D/MediaCodec(26916): shapeMediaFormat: deltas(0): AMessage(what = 0x00000000) = {
D/MediaCodec(26916):   }
D/MediaCodec(26916): flushMediametrics
I/ExtendedACodec(26916): setupVideoEncoder()
W/OMXUtils(26916): do not know color format 0x7fa30c06 = 2141391878
W/OMXUtils(26916): do not know color format 0x7fa30c04 = 2141391876
W/OMXUtils(26916): do not know color format 0x7fa30c00 = 2141391872
W/OMXUtils(26916): do not know color format 0x7fa30c09 = 2141391881
W/OMXUtils(26916): do not know color format 0x7fa30c0a = 2141391882
W/OMXUtils(26916): do not know color format 0x7fa30c08 = 2141391880
W/OMXUtils(26916): do not know color format 0x7fa30c07 = 2141391879
W/OMXUtils(26916): do not know color format 0x7f000789 = 2130708361
I/ACodec  (26916): [OMX.qcom.video.encoder.vp8] cannot encode HDR static metadata. Ignoring.
I/ACodec  (26916): setupVideoEncoder succeeded
I/ExtendedACodec(26916): [OMX.qcom.video.encoder.vp8] configure, AMessage : AMessage(what = 'conf', target = 10) = {
I/ExtendedACodec(26916):   int32_t color-format = 21
I/ExtendedACodec(26916):   int32_t i-frame-interval = 3600
I/ExtendedACodec(26916):   string mime = "video/x-vnd.on2.vp8"
I/ExtendedACodec(26916):   int32_t width = 360
I/ExtendedACodec(26916):   int32_t bitrate-mode = 2
I/ExtendedACodec(26916):   int32_t bitrate = 220000
I/ExtendedACodec(26916):   float frame-rate = 6.000000
I/ExtendedACodec(26916):   int32_t height = 640
I/ExtendedACodec(26916):   int32_t flags = 1
I/ExtendedACodec(26916):   int32_t encoder = 1
I/ExtendedACodec(26916): }
I/org.webrtc.Logging(26916): HardwareVideoEncoder: updateInputFormat format: {color-transfer=0, color-format=21, slice-height=640, image-data=java.nio.HeapByteBuffer[pos=0 lim=104 cap=104], mime=video/raw, width=360, stride=360, color-range=0, color-standard=0, height=640} stride: 360 sliceHeight: 640 isSemiPlanar: true frameSizeBytes: 345600
W/MediaCodec(26916): mapFormat: no mediaType information
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Dropped frame, no input buffers available
W/MediaCodec(26916): mapFormat: no mediaType information
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Dropped frame, no input buffers available
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: Number of active recording sessions: 1
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: AudioRecordingConfigurations:
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal:   client audio source=VOICE_COMMUNICATION, client session id=12321 (12321)
I/org.webrtc.Logging(26916):   Device AudioFormat: channel count=1, channel index mask=0, channel mask=IN_MONO, encoding=PCM_16BIT, sample rate=48000
I/org.webrtc.Logging(26916):   Client AudioFormat: channel count=1, channel index mask=0, channel mask=IN_MONO, encoding=PCM_16BIT, sample rate=48000
I/org.webrtc.Logging(26916):   AudioDevice: type=TYPE_BUILTIN_MIC, id=19
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: verifyAudioConfig: PASS
W/MediaCodec(26916): mapFormat: no mediaType information
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Sync frame generated
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Releasing MediaCodec on output thread
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Release on output thread done
D/MediaCodec(26916): flushMediametrics
D/MediaCodec(26916): flushMediametrics
I/OMXClient(26916): IOmx service obtained
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Format: {color-format=21, i-frame-interval=3600, mime=video/x-vnd.on2.vp8, width=180, bitrate-mode=2, bitrate=80000, frame-rate=4.0, height=320}
D/VQApply (26916): minquality: applies only to VBR encoding
D/MediaCodec(26916): shapeMediaFormat: deltas(0): AMessage(what = 0x00000000) = {
D/MediaCodec(26916):   }
D/MediaCodec(26916): flushMediametrics
I/flutter (26916):    }
I/ExtendedACodec(26916): setupVideoEncoder()
W/OMXUtils(26916): do not know color format 0x7fa30c06 = 2141391878
W/OMXUtils(26916): do not know color format 0x7fa30c04 = 2141391876
W/OMXUtils(26916): do not know color format 0x7fa30c00 = 2141391872
W/OMXUtils(26916): do not know color format 0x7fa30c09 = 2141391881
W/OMXUtils(26916): do not know color format 0x7fa30c0a = 2141391882
W/OMXUtils(26916): do not know color format 0x7fa30c08 = 2141391880
W/OMXUtils(26916): do not know color format 0x7fa30c07 = 2141391879
W/OMXUtils(26916): do not know color format 0x7f000789 = 2130708361
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.event, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.086538: CB-SDK: JanusSignaler: RemoteSDPEventAnswer wsEvent with sdp type= answer
I/flutter (26916): 2024-01-30T15:21:01.086980: CB-SDK: ConferenceSession: onRemoteSDPEventAnswer
I/flutter (26916): CB-SDK: PeerConnection: _drainIceCandidates
I/flutter (26916): CB-SDK: PeerConnection: _drainIceCandidates, onSendIceCandidates
I/flutter (26916): 2024-01-30T15:21:01.088803: CB-SDK: ConferenceSession: onSendIceCandidates
I/flutter (26916): 2024-01-30T15:21:01.089463: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.092070: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"d7287fee-ba41-498e-a4e8-0d8525ed2910","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1468177855 1 udp 2122260223 10.132.233.166 47265 typ host generation 0 ufrag qLHc network-id 3 network-cost 900","sdpMLineIndex":0,"sdpMid":"0"}}
I/flutter (26916): 2024-01-30T15:21:01.092638: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.093080: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"8c1736df-57e7-4ef6-a379-279cbe23111d","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:2827663570 1 udp 2122129151 127.0.0.1 42478 typ host generation 0 ufrag qLHc network-id 1","sdpMLineIndex":0,"sdpMid":"0"}}
I/flutter (26916): 2024-01-30T15:21:01.093537: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.093885: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"e3568b83-8c9e-4dd8-a0b7-64e8d8b5b87e","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:516743407 1 udp 2122202367 ::1 41370 typ host generation 0 ufrag qLHc network-id 2","sdpMLineIndex":0,"sdpMid":"0"}}
I/flutter (26916): 2024-01-30T15:21:01.094250: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.094557: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"5f6f6b00-ed4a-406e-975b-8003949ae324","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1468177855 1 udp 2122260223 10.132.233.166 49540 typ host generation 0 ufrag qLHc network-id 3 network-cost 900","sdpMLineIndex":1,"sdpMid":"1"}}
I/flutter (26916): 2024-01-30T15:21:01.094886: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.095156: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"7a39d8f5-e078-417a-8278-f8baec08e2d3","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:2827663570 1 udp 2122129151 127.0.0.1 45768 typ host generation 0 ufrag qLHc network-id 1","sdpMLineIndex":1,"sdpMid":"1"}}
I/flutter (26916): 2024-01-30T15:21:01.095533: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.095820: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"01d76fbd-e496-47cf-bc0a-05a997d63ebe","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:516743407 1 udp 2122202367 ::1 49335 typ host generation 0 ufrag qLHc network-id 2","sdpMLineIndex":1,"sdpMid":"1"}}
I/flutter (26916): 2024-01-30T15:21:01.096182: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.096540: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"8368021d-75f3-4913-92f4-7c9737f112d2","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1468177855 1 udp 2122260223 10.132.233.166 45846 typ host generation 0 ufrag qLHc network-id 3 network-cost 900","sdpMLineIndex":2,"sdpMid":"2"}}
I/flutter (26916): 2024-01-30T15:21:01.096976: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.097362: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"2d0f50cf-89ba-42e1-bbfd-2ca63ec57294","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:2827663570 1 udp 2122129151 127.0.0.1 41690 typ host generation 0 ufrag qLHc network-id 1","sdpMLineIndex":2,"sdpMid":"2"}}
I/flutter (26916): 2024-01-30T15:21:01.097779: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.098181: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"15acebe8-3b4d-402f-b4ac-08c36b29708a","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:516743407 1 udp 2122202367 ::1 39332 typ host generation 0 ufrag qLHc network-id 2","sdpMLineIndex":2,"sdpMid":"2"}}
I/flutter (26916): 2024-01-30T15:21:01.098570: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.098878: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"44d5619a-d4df-4dde-8a08-eca6894b94fa","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1468177855 1 udp 2122260223 10.132.233.166 49910 typ host generation 0 ufrag qLHc network-id 3 network-cost 900","sdpMLineIndex":3,"sdpMid":"3"}}
I/flutter (26916): 2024-01-30T15:21:01.099289: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.099588: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"2fdeaa38-60aa-49c5-9e4c-95c7717c6614","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:2827663570 1 udp 2122129151 127.0.0.1 49226 typ host generation 0 ufrag qLHc network-id 1","sdpMLineIndex":3,"sdpMid":"3"}}
I/flutter (26916): 2024-01-30T15:21:01.099892: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.100146: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"d7157ebb-7c70-4598-9b60-626387b67ff3","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:516743407 1 udp 2122202367 ::1 45577 typ host generation 0 ufrag qLHc network-id 2","sdpMLineIndex":3,"sdpMid":"3"}}
I/flutter (26916): 2024-01-30T15:21:01.100472: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.100721: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"3bdce99b-e3e0-4885-9d7c-6035052331d7","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:3594869322 1 tcp 1518149375 127.0.0.1 41331 typ host tcptype passive generation 0 ufrag qLHc network-id 1","sdpMLineIndex":0,"sdpMid":"0"}}
I/flutter (26916): 2024-01-30T15:21:01.101056: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.101325: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"7b001460-ecbc-4df7-a1b7-eeaaaf9b3848","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1610809975 1 tcp 1518222591 ::1 41303 typ host tcptype passive generation 0 ufrag qLHc network-id 2","sdpMLineIndex":0,"sdpMid":"0"}}
I/flutter (26916): 2024-01-30T15:21:01.101657: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.101942: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"9e2fa5a6-90cf-4ed5-bfb1-920a9e372271","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:3594869322 1 tcp 1518149375 127.0.0.1 39571 typ host tcptype passive generation 0 ufrag qLHc network-id 1","sdpMLineIndex":1,"sdpMid":"1"}}
I/flutter (26916): 2024-01-30T15:21:01.102292: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.102607: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"80acfb7a-0a12-4215-b987-c6cac3b5101c","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1610809975 1 tcp 1518222591 ::1 40073 typ host tcptype passive generation 0 ufrag qLHc network-id 2","sdpMLineIndex":1,"sdpMid":"1"}}
I/flutter (26916): 2024-01-30T15:21:01.102950: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.103349: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"67a515b2-d9ff-4130-b6da-a710859fb0c1","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:3594869322 1 tcp 1518149375 127.0.0.1 47615 typ host tcptype passive generation 0 ufrag qLHc network-id 1","sdpMLineIndex":2,"sdpMid":"2"}}
I/flutter (26916): 2024-01-30T15:21:01.103715: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.103974: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"8eb43413-bd0f-41aa-8d2b-69bc68c79b45","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1610809975 1 tcp 1518222591 ::1 46727 typ host tcptype passive generation 0 ufrag qLHc network-id 2","sdpMLineIndex":2,"sdpMid":"2"}}
I/flutter (26916): 2024-01-30T15:21:01.104306: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.104572: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"6d2bb17c-e3c2-4b2b-aa01-ca0fabd2853d","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:3594869322 1 tcp 1518149375 127.0.0.1 38749 typ host tcptype passive generation 0 ufrag qLHc network-id 1","sdpMLineIndex":3,"sdpMid":"3"}}
I/flutter (26916): 2024-01-30T15:21:01.104933: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.105243: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"90c842f9-be2d-4429-91dd-5a74945515c6","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1610809975 1 tcp 1518222591 ::1 44707 typ host tcptype passive generation 0 ufrag qLHc network-id 2","sdpMLineIndex":3,"sdpMid":"3"}}
I/flutter (26916): 2024-01-30T15:21:01.105619: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.105986: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"b063312a-08fd-4413-9d66-299c1215ab9f","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1860121473 1 udp 1686052607 196.153.175.122 12320 typ srflx raddr 10.132.233.166 rport 49540 generation 0 ufrag qLHc network-id 3 network-cost 900","sdpMLineIndex":1,"sdpMid":"1"}}
I/flutter (26916): 2024-01-30T15:21:01.106395: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.106718: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"f59ce057-6e98-43df-8fcb-1bba0b43284c","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1860121473 1 udp 1686052607 196.153.175.122 12301 typ srflx raddr 10.132.233.166 rport 49910 generation 0 ufrag qLHc network-id 3 network-cost 900","sdpMLineIndex":3,"sdpMid":"3"}}
I/flutter (26916): 2024-01-30T15:21:01.107158: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.107531: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"9a15e421-49fe-421e-b370-6ea528292399","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1860121473 1 udp 1686052607 196.153.175.122 12397 typ srflx raddr 10.132.233.166 rport 47265 generation 0 ufrag qLHc network-id 3 network-cost 900","sdpMLineIndex":0,"sdpMid":"0"}}
I/flutter (26916): 2024-01-30T15:21:01.107926: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.108300: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"3025738d-0ce5-471a-8813-8ce30814e682","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1860121473 1 udp 1686052607 196.153.175.122 12378 typ srflx raddr 10.132.233.166 rport 45846 generation 0 ufrag qLHc network-id 3 network-cost 900","sdpMLineIndex":2,"sdpMid":"2"}}
I/flutter (26916): 2024-01-30T15:21:01.110021: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.110365: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"2a8fb7d9-ce27-4f9d-9f3e-701d24de1b34","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1860121473 1 udp 1686052607 196.153.175.122 12321 typ srflx raddr 10.132.233.166 rport 47265 generation 0 ufrag qLHc network-id 3 network-cost 900","sdpMLineIndex":0,"sdpMid":"0"}}
I/flutter (26916): 2024-01-30T15:21:01.111182: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.111520: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"43eeded2-024d-4644-928b-7eef715eff0d","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1860121473 1 udp 1686052607 196.153.175.122 12294 typ srflx raddr 10.132.233.166 rport 49540 generation 0 ufrag qLHc network-id 3 network-cost 900","sdpMLineIndex":1,"sdpMid":"1"}}
I/flutter (26916): CB-SDK: : parseCallMessage cubeMessage= {_id: 65b8f7a729d6c5002fdaee09, chat_dialog_id: null, message: null, date_sent: 0, sender_id: 11685972, recipient_id: 11686103, read_ids: null, delivered_ids: null, views_count: null, attachments: [], reactions: null, id: null, created_at: null, updated_at: null, caller_name: test stagging, meeting_id: 65b8f7a4cf1208002f10baff, session_id: f65d386e-aa0e-4883-8dbd-ae8b365b0dce, call_opponents: 11686103, startCall: 1, call_type: 1, moduleIdentifier: SystemNotifications}
I/ACodec  (26916): [OMX.qcom.video.encoder.vp8] cannot encode HDR static metadata. Ignoring.
I/ACodec  (26916): setupVideoEncoder succeeded
I/ExtendedACodec(26916): [OMX.qcom.video.encoder.vp8] configure, AMessage : AMessage(what = 'conf', target = 13) = {
I/ExtendedACodec(26916):   int32_t color-format = 21
I/ExtendedACodec(26916):   int32_t i-frame-interval = 3600
I/ExtendedACodec(26916):   string mime = "video/x-vnd.on2.vp8"
I/ExtendedACodec(26916):   int32_t width = 180
I/ExtendedACodec(26916):   int32_t bitrate-mode = 2
I/ExtendedACodec(26916):   int32_t bitrate = 80000
I/ExtendedACodec(26916):   float frame-rate = 4.000000
I/ExtendedACodec(26916):   int32_t height = 320
I/ExtendedACodec(26916):   int32_t flags = 1
I/ExtendedACodec(26916):   int32_t encoder = 1
I/ExtendedACodec(26916): }
I/org.webrtc.Logging(26916): HardwareVideoEncoder: updateInputFormat format: {color-transfer=0, color-format=21, slice-height=320, image-data=java.nio.HeapByteBuffer[pos=0 lim=104 cap=104], mime=video/raw, width=180, stride=180, color-range=0, color-standard=0, height=320} stride: 180 sliceHeight: 320 isSemiPlanar: true frameSizeBytes: 86400
W/MediaCodec(26916): mapFormat: no mediaType information
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Dropped frame, no input buffers available
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Sync frame generated
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Sync frame generated
I/AudioTrack(26916): isLongTimeZoreData zoer date time 1 Seconds
I/TRuntime.CctTransportBackend(26916): Status Code: 200
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Releasing MediaCodec on output thread
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Release on output thread done
D/MediaCodec(26916): flushMediametrics
D/MediaCodec(26916): flushMediametrics
I/OMXClient(26916): IOmx service obtained
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Format: {color-format=21, i-frame-interval=3600, mime=video/x-vnd.on2.vp8, width=720, bitrate-mode=2, bitrate=30000, frame-rate=8.0, height=1280}
D/VQApply (26916): minquality: applies only to VBR encoding
D/MediaCodec(26916): shapeMediaFormat: deltas(0): AMessage(what = 0x00000000) = {
D/MediaCodec(26916):   }
D/MediaCodec(26916): flushMediametrics
I/ExtendedACodec(26916): setupVideoEncoder()
W/OMXUtils(26916): do not know color format 0x7fa30c06 = 2141391878
W/OMXUtils(26916): do not know color format 0x7fa30c04 = 2141391876
W/OMXUtils(26916): do not know color format 0x7fa30c00 = 2141391872
W/OMXUtils(26916): do not know color format 0x7fa30c09 = 2141391881
W/OMXUtils(26916): do not know color format 0x7fa30c0a = 2141391882
W/OMXUtils(26916): do not know color format 0x7fa30c08 = 2141391880
W/OMXUtils(26916): do not know color format 0x7fa30c07 = 2141391879
W/OMXUtils(26916): do not know color format 0x7f000789 = 2130708361
I/ACodec  (26916): [OMX.qcom.video.encoder.vp8] cannot encode HDR static metadata. Ignoring.
I/ACodec  (26916): setupVideoEncoder succeeded
I/ExtendedACodec(26916): [OMX.qcom.video.encoder.vp8] configure, AMessage : AMessage(what = 'conf', target = 16) = {
I/ExtendedACodec(26916):   int32_t color-format = 21
I/ExtendedACodec(26916):   int32_t i-frame-interval = 3600
I/ExtendedACodec(26916):   string mime = "video/x-vnd.on2.vp8"
I/ExtendedACodec(26916):   int32_t width = 720
I/ExtendedACodec(26916):   int32_t bitrate-mode = 2
I/ExtendedACodec(26916):   int32_t bitrate = 30000
I/ExtendedACodec(26916):   float frame-rate = 8.000000
I/ExtendedACodec(26916):   int32_t height = 1280
I/ExtendedACodec(26916):   int32_t flags = 1
I/ExtendedACodec(26916):   int32_t encoder = 1
I/ExtendedACodec(26916): }
I/org.webrtc.Logging(26916): HardwareVideoEncoder: updateInputFormat format: {color-transfer=0, color-format=21, slice-height=1280, image-data=java.nio.HeapByteBuffer[pos=0 lim=104 cap=104], mime=video/raw, width=720, stride=720, color-range=0, color-standard=0, height=1280} stride: 720 sliceHeight: 1280 isSemiPlanar: true frameSizeBytes: 1382400
W/MediaCodec(26916): mapFormat: no mediaType information
I/org.webrtc.Logging(26916): CameraStatistics: Camera fps: 8.
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Sync frame generated
W/MediaCodec(26916): mapFormat: no mediaType information
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Sync frame generated
W/MediaCodec(26916): mapFormat: no mediaType information
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Sync frame generated
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Sync frame generated
I/flutter (26916): CB-SDK: : *********************************************************
I/flutter (26916): *** RESPONSE *** 201 *** 70f2cf6a-c508-4505-84a2-17f1b76641f1 ***
I/flutter (26916): HEADERS
I/flutter (26916):   {cb-token-expirationdate: 2024-01-30 15:20:39 UTC, connection: keep-alive, date: Tue, 30 Jan 2024 13:20:39 GMT, strict-transport-security: max-age=15768000; includeSubDomains, content-length: 306, access-control-expose-headers: CB-Token-ExpirationDate, Date, content-type: application/json; charset=utf-8, server: nginx/1.25.0}
I/flutter (26916): BODY
I/flutter (26916):   {"messageId":"65b8f7a729d6c5002fdaee09","recipientId":11686103,"extensionParams":{"meeting_id":"65b8f7a4cf1208002f10baff","session_id":"f65d386e-aa0e-4883-8dbd-ae8b365b0dce","startCall":"1","call_opponents":"11686103","call_type":"1","caller_name":"test stagging","moduleIdentifier":"SystemNotifications"}}
I/flutter (26916):
I/flutter (26916): CB-SDK: : *********************************************************
I/flutter (26916): *** RESPONSE *** 201 *** bdcb55e5-c4e1-4b68-95d1-a0c27e7ac854 ***
I/flutter (26916): HEADERS
I/flutter (26916):   {cb-token-expirationdate: 2024-01-30 15:20:39 UTC, connection: keep-alive, date: Tue, 30 Jan 2024 13:20:39 GMT, strict-transport-security: max-age=15768000; includeSubDomains, content-length: 1696, access-control-expose-headers: CB-Token-ExpirationDate, Date, content-type: application/json; charset=utf-8, server: nginx/1.25.0}
I/flutter (26916): BODY
I/flutter (26916):   [{"event":{"_id":"65b8f7a7cf1208002f10bb00","event_type":"one_shot","message":"eyJtZXNzYWdlIjoiSW5jb21pbmcgVmlkZW8gY2FsbCIsImNhbGxfdHlwZSI6MSwic2Vzc2lvbl9pZCI6ImY2NWQzODZlLWFhMGUtNDg4My04ZGJkLWFlOGIzNjViMGRjZSIsImNhbGxlcl9pZCI6MTE2ODU5NzIsImNhbGxlcl9uYW1lIjoidGVzdCBzdGFnZ2luZyIsImNhbGxfb3Bwb25lbnRzIjoiMTE2ODYxMDMiLCJwaG90b191cmwiOm51bGwsInVzZXJfaW5mbyI6IntcIm1lZXRpbmdfaWRcIjpcIjY1YjhmN2E0Y2YxMjA4MDAyZjEwYmFmZlwifSIsInN0YXJ0X2NhbGxfZGF0ZSI6bnVsbCwic2lnbmFsX3R5cGUiOiJzdGFydENhbGwiLCJpb3Nfdm9pcCI6MSwiZXhwaXJhdGlvbiI6MCwibWVldGluZ19pZCI6IjY1YjhmN2E0Y2YxMjA4MDAyZjEwYmFmZiJ9","user_id":11685972,"environment":"development","date":null,"period":null,"kind":"API","end_date":null,"active":true,"created_at":"2024-01-30T13:20:39Z","updated_at":"2024-01-30T13:20:39Z","tag_query":null,"name":null,"notification_channel":{"name":"gcm"},"id":877752412}},{"event":{"_id":"65b8f7a7cf1208002f10bb01","event_type":"one_shot","message":"eyJtZXNzYWdlIjoiSW5jb21pbmcgVmlkZW8gY2FsbCIsImNhbGxfdHlwZSI6MSwic2Vzc2lvbl9pZCI6ImY2NWQzODZlLW
I/flutter (26916):
I/flutter (26916): CB-SDK: : Event for Offliners created: [{id: 877752412, created_at: 2024-01-30T13:20:39.000Z, updated_at: 2024-01-30T13:20:39.000Z, notification_type: null, environment: development, message: {message: Incoming Video call, call_type: 1, session_id: f65d386e-aa0e-4883-8dbd-ae8b365b0dce, caller_id: 11685972, caller_name: test stagging, call_opponents: 11686103, photo_url: null, user_info: {"meeting_id":"65b8f7a4cf1208002f10baff"}, start_call_date: null, signal_type: startCall, ios_voip: 1, expiration: 0, meeting_id: 65b8f7a4cf1208002f10baff}, event_type: one_shot, notification_channel: gcm, user_id: 11685972}, {id: 473921978, created_at: 2024-01-30T13:20:39.000Z, updated_at: 2024-01-30T13:20:39.000Z, notification_type: null, environment: production, message: {message: Incoming Video call, call_type: 1, session_id: f65d386e-aa0e-4883-8dbd-ae8b365b0dce, caller_id: 11685972, caller_name: test stagging, call_opponents: 11686103, photo_url: null, user_info: {"meeting_id":"65b8f7a4cf1208002f10baff"}, start_call_date
I/flutter (26916): CB-SDK: PeerConnection: onSignalingState changed to RTCSignalingState.RTCSignalingStateStable for opponent 1
I/flutter (26916): 2024-01-30T15:21:01.216498: CB-SDK: PeerConnection: onIceConnectionState changed to RTCIceConnectionState.RTCIceConnectionStateChecking for opponent 1
I/flutter (26916): 2024-01-30T15:21:01.216687: CB-SDK: ConferenceSession: [onPeerConnectionStateChanged] the connection state of publisher changed to PeerConnectionState.RTC_CONNECTION_CHECKING
I/flutter (26916): 2024-01-30T15:21:01.217722: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.218138: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"14c7396a-f6f7-4587-9fb2-67bab4b3499c","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1860121473 1 udp 1686052607 196.153.175.122 12374 typ srflx raddr 10.132.233.166 rport 47265 generation 0 ufrag qLHc network-id 3 network-cost 900","sdpMLineIndex":0,"sdpMid":"0"}}
I/flutter (26916): 2024-01-30T15:21:01.263569: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.264106: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"7c9738c7-52d0-4411-aff0-95ba5d47886c","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:2058442317 1 udp 41885951 3.121.84.95 41079 typ relay raddr 196.153.175.122 rport 12321 generation 0 ufrag qLHc network-id 3 network-cost 900","sdpMLineIndex":0,"sdpMid":"0"}}
I/flutter (26916): 2024-01-30T15:21:01.286413: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "d7287fee-ba41-498e-a4e8-0d8525ed2910"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.293434: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "8c1736df-57e7-4ef6-a379-279cbe23111d"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.294710: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "e3568b83-8c9e-4dd8-a0b7-64e8d8b5b87e"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.295936: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "5f6f6b00-ed4a-406e-975b-8003949ae324"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.300329: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "7a39d8f5-e078-417a-8278-f8baec08e2d3"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.306733: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "01d76fbd-e496-47cf-bc0a-05a997d63ebe"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.308213: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "8368021d-75f3-4913-92f4-7c9737f112d2"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.319258: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "2d0f50cf-89ba-42e1-bbfd-2ca63ec57294"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.343781: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "15acebe8-3b4d-402f-b4ac-08c36b29708a"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.344831: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "44d5619a-d4df-4dde-8a08-eca6894b94fa"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.348057: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "2fdeaa38-60aa-49c5-9e4c-95c7717c6614"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.349107: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "d7157ebb-7c70-4598-9b60-626387b67ff3"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.350206: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "3bdce99b-e3e0-4885-9d7c-6035052331d7"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.384239: CB-SDK: ConferenceSession: onSendIceCandidate
I/flutter (26916): 2024-01-30T15:21:01.384796: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"472267a7-9ac0-4cb2-a9d9-f358fa4e589f","token":null,"handle_id":4444357344620434,"candidate":{"candidate":"candidate:1201044652 1 udp 25108479 35.158.208.53 50374 typ relay raddr 196.153.175.122 rport 12313 generation 0 ufrag qLHc network-id 3 network-cost 900","sdpMLineIndex":0,"sdpMid":"0"}}
I/flutter (26916): 2024-01-30T15:21:01.459646: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "7b001460-ecbc-4df7-a1b7-eeaaaf9b3848"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.462195: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "9e2fa5a6-90cf-4ed5-bfb1-920a9e372271"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.463371: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "80acfb7a-0a12-4215-b987-c6cac3b5101c"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.464558: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "67a515b2-d9ff-4130-b6da-a710859fb0c1"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.469918: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "8eb43413-bd0f-41aa-8d2b-69bc68c79b45"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.473717: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "6d2bb17c-e3c2-4b2b-aa01-ca0fabd2853d"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.475905: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "90c842f9-be2d-4429-91dd-5a74945515c6"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.489049: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "b063312a-08fd-4413-9d66-299c1215ab9f"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.490675: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "f59ce057-6e98-43df-8fcb-1bba0b43284c"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.491916: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "9a15e421-49fe-421e-b370-6ea528292399"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.493023: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "3025738d-0ce5-471a-8813-8ce30814e682"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.494135: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "2a8fb7d9-ce27-4f9d-9f3e-701d24de1b34"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.495292: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "43eeded2-024d-4644-928b-7eef715eff0d"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/AudioTrack(26916): isLongTimeZoreData zoer date time 2 Seconds
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
I/flutter (26916): 2024-01-30T15:21:01.496372: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "14c7396a-f6f7-4587-9fb2-67bab4b3499c"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.497532: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "7c9738c7-52d0-4411-aff0-95ba5d47886c"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.561758: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "472267a7-9ac0-4cb2-a9d9-f358fa4e589f"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): CB-SDK: PeerConnection: onIceGatheringState changed to RTCIceGatheringState.RTCIceGatheringStateComplete for opponent 1
I/flutter (26916): CB-SDK: BaseSession: onIceGatheringStateChanged state= RTCIceGatheringState.RTCIceGatheringStateComplete for userId= 1
I/flutter (26916): 2024-01-30T15:21:01.627459: CB-SDK: ConferenceSession: signaler sendIceCandidateComplete for userId= 1
I/flutter (26916): 2024-01-30T15:21:01.629299: CB-SDK: : SND(0): {"janus":"trickle","session_id":1232016110205478,"transaction":"ee9dcfaa-3256-49ae-9214-6205c15aa6a6","token":null,"handle_id":4444357344620434,"candidate":{"completed":true}}
I/flutter (26916): 2024-01-30T15:21:01.815544: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "ee9dcfaa-3256-49ae-9214-6205c15aa6a6"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:01.853910: CB-SDK: PeerConnection: onIceConnectionState changed to RTCIceConnectionState.RTCIceConnectionStateConnected for opponent 1
I/flutter (26916): 2024-01-30T15:21:01.854086: CB-SDK: ConferenceSession: [onPeerConnectionStateChanged] the connection state of publisher changed to PeerConnectionState.RTC_CONNECTION_CONNECTED
I/flutter (26916): 2024-01-30T15:21:02.068236: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "webrtcup",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "sender": 4444357344620434
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.webrtcup, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:02.072592: CB-SDK: JanusSignaler: WsWebRTCUp packet sender= 4444357344620434
I/flutter (26916): 2024-01-30T15:21:02.073588: CB-SDK: ConferenceSession: onWebRTCUpReceived senderId= 4444357344620434
I/flutter (26916): 2024-01-30T15:21:02.074056: CB-SDK: : became a publisher
I/flutter (26916): 2024-01-30T15:21:02.074491: CB-SDK: : autoSubscribeToPublisher enabled
I/flutter (26916): 2024-01-30T15:21:02.238351: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "media",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "sender": 4444357344620434,
I/flutter (26916):    "mid": "0",
I/flutter (26916):    "type": "video",
I/flutter (26916):    "substream": 1,
I/flutter (26916):    "receiving": true
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.media, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:02.239470: CB-SDK: JanusSignaler: WsMedia packet type= video, receiving= true
I/flutter (26916): 2024-01-30T15:21:02.239922: CB-SDK: ConferenceSession: onMediaReceived
I/flutter (26916): 2024-01-30T15:21:02.360354: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "media",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "sender": 4444357344620434,
I/flutter (26916):    "mid": "1",
I/flutter (26916):    "type": "audio",
I/flutter (26916):    "receiving": true
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.media, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:02.360782: CB-SDK: JanusSignaler: WsMedia packet type= audio, receiving= true
I/flutter (26916): 2024-01-30T15:21:02.360878: CB-SDK: ConferenceSession: onMediaReceived
I/flutter (26916): 2024-01-30T15:21:02.433026: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "media",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "sender": 4444357344620434,
I/flutter (26916):    "mid": "0",
I/flutter (26916):    "type": "video",
I/flutter (26916):    "substream": 0,
I/flutter (26916):    "receiving": true
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.media, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:02.433349: CB-SDK: JanusSignaler: WsMedia packet type= video, receiving= true
I/flutter (26916): 2024-01-30T15:21:02.433407: CB-SDK: ConferenceSession: onMediaReceived
I/flutter (26916): 2024-01-30T15:21:02.947729: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "media",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "sender": 4444357344620434,
I/flutter (26916):    "mid": "0",
I/flutter (26916):    "type": "video",
I/flutter (26916):    "substream": 2,
I/flutter (26916):    "receiving": true
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.media, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:02.948100: CB-SDK: JanusSignaler: WsMedia packet type= video, receiving= true
I/flutter (26916): 2024-01-30T15:21:02.948168: CB-SDK: ConferenceSession: onMediaReceived
I/AudioTrack(26916): isLongTimeZoreData zoer date time 3 Seconds
I/org.webrtc.Logging(26916): EglRenderer: Duration: 4003 ms. Frames received: 34. Dropped: 0. Rendered: 34. Render fps: 8.5. Average render time: 4701 us. Average swapBuffer time: 1288 us.
I/org.webrtc.Logging(26916): CameraStatistics: Camera fps: 10.
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
I/AudioTrack(26916): isLongTimeZoreData zoer date time 4 Seconds
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
I/AudioTrack(26916): isLongTimeZoreData zoer date time 5 Seconds
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
I/org.webrtc.Logging(26916): CameraStatistics: Camera fps: 10.
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
I/AudioTrack(26916): isLongTimeZoreData zoer date time 6 Seconds
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
I/AudioTrack(26916): isLongTimeZoreData zoer date time 7 Seconds
I/org.webrtc.Logging(26916): EglRenderer: Duration: 4002 ms. Frames received: 40. Dropped: 0. Rendered: 40. Render fps: 10.0. Average render time: 3519 us. Average swapBuffer time: 1108 us.
I/org.webrtc.Logging(26916): CameraStatistics: Camera fps: 10.
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
I/AudioTrack(26916): isLongTimeZoreData zoer date time 8 Seconds
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
W/MediaCodec(26916): mapFormat: no mediaType information
I/flutter (26916): CB-SDK: : parseCallMessage cubeMessage= {_id: 65b8f7b0cf1208002f10bb02, chat_dialog_id: null, message: null, date_sent: 0, sender_id: 11686103, recipient_id: 11685972, read_ids: null, delivered_ids: null, views_count: null, attachments: [], reactions: null, id: null, created_at: null, updated_at: null, rejectCall: 1, meeting_id: 65b8f7a4cf1208002f10baff, busy: false, session_id: f65d386e-aa0e-4883-8dbd-ae8b365b0dce, moduleIdentifier: SystemNotifications}
I/flutter (26916): CB-SDK: _ConversationCallScreenState: _onReceiveRejectCall got reject from user 11686103
I/flutter (26916): CB-SDK: CallManager: [_clearProperties]
I/flutter (26916): CB-SDK: _ConversationCallScreenState: _onCloseCall
I/flutter (26916): 2024-01-30T15:21:10.548966: CB-SDK: ConferenceSession: signaler leave
I/flutter (26916): 2024-01-30T15:21:10.550035: CB-SDK: : SND(0): {"janus":"message","session_id":1232016110205478,"transaction":"e67edb96-be98-4aca-ae6c-ebfdc9e4aa56","token":null,"body":{"id":11685972,"room":"65b8f7a4cf1208002f10baff","request":"leave"}}
I/flutter (26916): 2024-01-30T15:21:10.551615: CB-SDK: ConferenceSession: disposeSession opponentId 1
W/MediaCodec(26916): mapFormat: no mediaType information
I/flutter (26916): 2024-01-30T15:21:10.553443: CB-SDK: ConferenceSession: closeConnectionForOpponent opponentId 1 success
I/flutter (26916): CB-SDK: BaseSession: closeConnectionForOpponent, _channels.length = 0
I/flutter (26916): CB-SDK: BaseSession: closeCurrentSession
I/flutter (26916): CB-SDK: BaseSession: [closeCurrentSession] dispose localStream
W/MediaCodec(26916): mapFormat: no mediaType information
D/FlutterWebRTCPlugin(26916): onConnectionChangeCLOSED
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: stopRecording
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: stopThread
I/AudioTrack(26916): isLongTimeZoreData zoer date time 9 Seconds
I/org.webrtc.Logging(26916): GlShader: Deleting shader.
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: doAudioRecordStateCallback: STOP
I/org.webrtc.Logging(26916): WebRtcAudioEffectsExternal: release
I/org.webrtc.Logging(26916): WebRtcAudioRecordExternal: releaseAudioResources
I/org.webrtc.Logging(26916): CameraStatistics: Camera fps: 10.
I/flutter (26916): 2024-01-30T15:21:10.737656: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "error",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "e67edb96-be98-4aca-ae6c-ebfdc9e4aa56",
I/flutter (26916):    "error": {
I/flutter (26916):       "code": 457,
I/flutter (26916):       "reason": "Unhandled request 'message' at this path"
I/flutter (26916):    }
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.error, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:10.741507: CB-SDK: : SND(0): {"janus":"message","session_id":1232016110205478,"transaction":"d9bb1c67-6927-428f-b191-8c281babbfe0","token":null,"handle_id":4444357344620434,"body":{"id":11685972,"room":"65b8f7a4cf1208002f10baff","request":"leave"}}
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Releasing MediaCodec on output thread
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Release on output thread done
D/MediaCodec(26916): flushMediametrics
D/MediaCodec(26916): flushMediametrics
I/flutter (26916): 2024-01-30T15:21:10.908340: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "ack",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "d9bb1c67-6927-428f-b191-8c281babbfe0"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:10.910479: CB-SDK: ConferenceSession: signaler destroySession
I/flutter (26916): 2024-01-30T15:21:10.912697: CB-SDK: : SND(0): {"janus":"destroy","session_id":1232016110205478,"transaction":"0128d059-4e8c-4522-b5e2-39a059d02f3e","token":null}
I/flutter (26916): 2024-01-30T15:21:10.922171: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "event",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "d9bb1c67-6927-428f-b191-8c281babbfe0",
I/flutter (26916):    "sender": 4444357344620434,
I/flutter (26916):    "plugindata": {
I/flutter (26916):       "plugin": "janus.plugin.videoroom",
I/flutter (26916):       "data": {
I/flutter (26916):          "videoroom": "event",
I/flutter (26916):          "room": "65b8f7a4cf1208002f10baff",
I/flutter (26916):          "leaving": "ok"
I/flutter (26916):       }
I/flutter (26916):    }
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.event, sessionId=1232016110205478}
I/flutter (26916): 2024-01-30T15:21:10.923732: CB-SDK: JanusSignaler: isLeaveCurrentUserEvent leavingOk? true
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Releasing MediaCodec on output thread
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Release on output thread done
D/MediaCodec(26916): flushMediametrics
D/MediaCodec(26916): flushMediametrics
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Releasing MediaCodec on output thread
I/org.webrtc.Logging(26916): HardwareVideoEncoder: Release on output thread done
D/MediaCodec(26916): flushMediametrics
D/MediaCodec(26916): flushMediametrics
I/org.webrtc.Logging(26916): VolumeLogger: stop@[name=worker_thread - 27456, id=1348]
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: stopPlayout
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: underrun count: 0
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: stopThread
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: Stopping the AudioTrackThread...
I/flutter (26916): 2024-01-30T15:21:11.092232: CB-SDK: : RCV(0): {
I/flutter (26916):    "janus": "success",
I/flutter (26916):    "session_id": 1232016110205478,
I/flutter (26916):    "transaction": "0128d059-4e8c-4522-b5e2-39a059d02f3e"
I/flutter (26916): }
I/flutter (26916): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.success, sessionId=1232016110205478}
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: AudioTrackThread has now been stopped.
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: Calling AudioTrack.stop...
D/AudioTrack(26916): stop(1654): called with 458400 frames delivered
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: AudioTrack.stop is done.
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: doAudioTrackStateCallback: 1
I/org.webrtc.Logging(26916): WebRtcAudioTrackExternal: releaseAudioResources
I/org.webrtc.Logging(26916): NetworkMonitor: Stop monitoring with native observer -5476376658173830752
I/org.webrtc.Logging(26916): NetworkMonitorAutoDetect: Unregister network callback
W/FlutterWebRTCPlugin(26916): FlutterRTCVideoRenderer.setVideoTrack, set video track to null
I/org.webrtc.Logging(26916): CameraCapturer: Stop capture
I/org.webrtc.Logging(26916): CameraCapturer: Stop capture: Nulling session
I/Choreographer(26916): Skipped 34 frames!  The application may be doing too much work on its main thread.
W/Looper  (26916): PerfMonitor doFrame : time=0ms vsyncFrame=0 latency=575ms procState=-1 historyMsgCount=126
I/org.webrtc.Logging(26916): Camera2Session: Stop camera2 session on camera 1
I/org.webrtc.Logging(26916): CameraCapturer: Stop capture done
I/org.webrtc.Logging(26916): Camera2Session: Stop internal
I/org.webrtc.Logging(26916): CameraCapturer: dispose
I/org.webrtc.Logging(26916): SurfaceTextureHelper: stopListening()
I/org.webrtc.Logging(26916): CameraCapturer: Stop capture
I/org.webrtc.Logging(26916): CameraCapturer: Stop capture: No session open
I/org.webrtc.Logging(26916): CameraCapturer: Stop capture done
I/org.webrtc.Logging(26916): SurfaceTextureHelper: stopListening()
I/flutter (26916): CB-SDK: BaseSession: _notifySessionClosed
D/CameraExtImplXiaoMi(26916): releaseCameraDevice: 1
D/CameraDevice-JV-1(26916): close: E. id = 1
I/flutter (26916): CB-SDK: _ConversationCallScreenState: [_onSessionClosed]
I/flutter (26916): CB-SDK: _ConversationCallScreenState: [_onSessionClosed] 2
I/flutter (26916): [_onSessionClosed] navigator.canPop()
I/[CIO]   (26916): track screen view event N/A
D/[CIO]   (26916): track screen view event N/A attributes: {}
I/[CIO]   (26916): ignoring track screen view event N/A because no profile currently identified
I/flutter (26916): 2024-01-30T15:21:11.168907: CB-SDK: PeerConnection: onIceConnectionState changed to RTCIceConnectionState.RTCIceConnectionStateClosed for opponent 1
I/flutter (26916): 2024-01-30T15:21:11.169294: CB-SDK: ConferenceSession: [onPeerConnectionStateChanged] the connection state of publisher changed to PeerConnectionState.RTC_CONNECTION_CLOSED
I/flutter (26916): CB-SDK: PeerConnection: onSignalingState changed to RTCSignalingState.RTCSignalingStateClosed for opponent 1
W/BpBinder(26916): Slow Binder: BpBinder transact took 312 ms, interface=android.hardware.camera2.ICameraDeviceUser, code=1 oneway=false
D/CameraDevice-JV-1(26916): close: X
I/org.webrtc.Logging(26916): Camera2Session: Stop done
I/org.webrtc.Logging(26916): Camera2Session: Camera device closed.
D/FlutterWebRTCPlugin(26916): CameraEventsHandler.onFirstFrameAvailable
I/org.webrtc.Logging(26916): SurfaceTextureHelper: dispose()
I/org.webrtc.Logging(26916): GlShader: Deleting shader.
W/CameraDevice-JV-1(26916): Device error received, code 4, frame number 103, request ID 0, subseq ID 0
W/CameraDevice-JV-1(26916): Device error received, code 4, frame number 101, request ID 0, subseq ID 0
W/CameraDevice-JV-1(26916): Device error received, code 4, frame number 102, request ID 0, subseq ID 0
W/CameraDevice-JV-1(26916): Device error received, code 5, frame number 101, request ID 0, subseq ID 0
W/CameraDevice-JV-1(26916): Device error received, code 5, frame number 102, request ID 0, subseq ID 0
W/CameraDevice-JV-1(26916): Device error received, code 5, frame number 103, request ID 0, subseq ID 0
W/CameraDevice-JV-1(26916): Device error received, code 4, frame number 104, request ID 0, subseq ID 0
W/CameraDevice-JV-1(26916): Device error received, code 4, frame number 105, request ID 0, subseq ID 0
W/CameraDevice-JV-1(26916): Device error received, code 5, frame number 104, request ID 0, subseq ID 0
W/CameraDevice-JV-1(26916): Device error received, code 5, frame number 105, request ID 0, subseq ID 0
I/org.webrtc.Logging(26916): EglRenderer: Releasing.
I/org.webrtc.Logging(26916): GlShader: Deleting shader.
I/org.webrtc.Logging(26916): EglRenderer: eglBase detach and release.
I/flutter (26916): onClose -- ChatV2Bloc
I/org.webrtc.Logging(26916): EglRenderer: Releasing done.
I/org.webrtc.Logging(26916): EglRenderer: Quitting render thread.
TatankaConCube commented 5 months ago

no, I need the log from the described case, when the receiver's app is killed

radyhaggag commented 5 months ago

no, I need the log from the described case, when the receiver's app is killed

How can i get the logs on the receiver side and the app is killed?

radyhaggag commented 5 months ago

Okay i get it.

` I/flutter (25138): onChange -- VideoCallBloc, Change { currentState: Instance of 'StartSessionSuccessState', nextState: Instance of 'StartSessionLoadingState' } D/EGL_emulation(25138): app_time_stats: avg=37240.07ms min=61.73ms max=148742.56ms count=4 D/EGL_emulation(25138): app_time_stats: avg=51.66ms min=36.01ms max=65.43ms count=17 I/flutter (25138): CB-SDK: : ========================================================= I/flutter (25138): === REQUEST ==== d674c403-875a-4c4f-97c4-ac84b2a3dfde === I/flutter (25138): REQUEST I/flutter (25138): GET https://api.connectycube.com/users/v2?login=p2BwhT122CTXxFCxzn04f5eJ5po2 I/flutter (25138): HEADERS I/flutter (25138): {Content-type: application/json, ConnectyCube-REST-API-Version: 0.1.1, CB-SDK: Flutter 2.11.2, CB-Token: E4BEC3569D4BEF0B6CB7AE4EB128CA3BCBB4} I/flutter (25138): BODY I/flutter (25138): I/flutter (25138): D/EGL_emulation(25138): app_time_stats: avg=42.82ms min=34.88ms max=59.67ms count=16 I/flutter (25138): CB-SDK: : *** I/flutter (25138): * RESPONSE 200 d674c403-875a-4c4f-97c4-ac84b2a3dfde * I/flutter (25138): HEADERS I/flutter (25138): {cb-token-expirationdate: 2024-01-30 15:37:33 UTC, connection: keep-alive, date: Tue, 30 Jan 2024 13:37:33 GMT, strict-transport-security: max-age=15768000; includeSubDomains, content-length: 515, access-control-expose-headers: CB-Token-ExpirationDate, Date, content-type: application/json; charset=utf-8, server: nginx/1.25.0} I/flutter (25138): BODY I/flutter (25138): {"total_entries":1,"skip":0,"limit":100,"items":[{"_id":"65b4121029d6c5002fd9f3ec","id":11685972,"created_at":"2024-01-26T20:12:00Z","updated_at":"2024-01-30T13:31:02Z","last_request_at":"2024-01-30T13:31:02Z","login":"p2BwhT122CTXxFCxzn04f5eJ5po2","email":"radyhaggagradysherif@gmail.com","full_name":"test stagging","custom_data":"student","timezone":null,"phone":null,"website":null,"twitter_id":null,"external_user_id":null,"facebook_id":null,"user_tags":null,"avatar":null,"external_id":null,"is_guest":null}]} I/flutter (25138): I/flutter (25138): CB-SDK: : ========================================================= I/flutter (25138): === REQUEST ==== 77b70ec7-c215-439f-bb36-722b18fe06b0 === I/flutter (25138): REQUEST I/flutter (25138): GET https://api.connectycube.com/users/v2?login=p2BwhT122CTXxFCxzn04f5eJ5po2 I/flutter (25138): HEADERS I/flutter (25138): {Content-type: application/json, ConnectyCube-REST-API-Version: 0.1.1, CB-SDK: Flutter 2.11.2, CB-Token: E4BEC3569D4BEF0B6CB7AE4EB128CA3BCBB4} I/flutter (25138): BODY I/flutter (25138): I/flutter (25138): D/EGL_emulation(25138): app_time_stats: avg=41.81ms min=34.19ms max=51.46ms count=18 I/flutter (25138): CB-SDK: : *** I/flutter (25138): RESPONSE 200 77b70ec7-c215-439f-bb36-722b18fe06b0 I/flutter (25138): HEADERS I/flutter (25138): {cb-token-expirationdate: 2024-01-30 15:37:34 UTC, connection: keep-alive, date: Tue, 30 Jan 2024 13:37:34 GMT, strict-transport-security: max-age=15768000; includeSubDomains, content-length: 515, access-control-expose-headers: CB-Token-ExpirationDate, Date, content-type: application/json; charset=utf-8, server: nginx/1.25.0} I/flutter (25138): BODY I/flutter (25138): {"total_entries":1,"skip":0,"limit":100,"items":[{"_id":"65b4121029d6c5002fd9f3ec","id":11685972,"created_at":"2024-01-26T20:12:00Z","updated_at":"2024-01-30T13:31:02Z","last_request_at":"2024-01-30T13:31:02Z","login":"p2BwhT122CTXxFCxzn04f5eJ5po2","email":"radyhaggagradysherif@gmail.com","full_name":"test stagging","custom_data":"student","timezone":null,"phone":null,"website":null,"twitter_id":null,"external_user_id":null,"facebook_id":null,"user_tags":null,"avatar":null,"external_id":null,"is_guest":null}]} I/flutter (25138): I/flutter (25138): CB-SDK: : [_startCall] call type 1 I/flutter (25138): onChange -- VideoCallBloc, Change { currentState: Instance of 'StartSessionLoadingState', nextState: Instance of 'StartSessionSuccessState' } I/flutter (25138): CB-SDK: : ========================================================= I/flutter (25138): === REQUEST ==== f967c054-4390-4117-aecc-b6a3ad4044e9 === I/flutter (25138): REQUEST I/flutter (25138): POST https://api.connectycube.com/meetings I/flutter (25138): HEADERS I/flutter (25138): {Content-type: application/json, ConnectyCube-REST-API-Version: 0.1.1, CB-SDK: Flutter 2.11.2, CB-Token: E4BEC3569D4BEF0B6CB7AE4EB128CA3BCBB4} I/flutter (25138): BODY I/flutter (25138): {"name":"Conference Call","start_date":1706621850150,"end_date":1706623650150,"attendees":[{"id":11685972}],"chat":false,"record":false,"public":false,"scheduled":false,"notify":false,"notify_before":null} I/flutter (25138): I/flutter (25138): CB-SDK: : *** I/flutter (25138): * RESPONSE 200 f967c054-4390-4117-aecc-b6a3ad4044e9 *** I/flutter (25138): HEADERS I/flutter (25138): {cb-token-expirationdate: 2024-01-30 15:37:35 UTC, connection: keep-alive, date: Tue, 30 Jan 2024 13:37:35 GMT, strict-transport-security: max-age=15768000; includeSubDomains, content-length: 354, access-control-expose-headers: CB-Token-ExpirationDate, Date, content-type: application/json; charset=utf-8, server: nginx/1.25.0} I/flutter (25138): BODY I/flutter (25138): {"_id":"65b8fb9fcf1208002f10bb87","name":"Conference Call","start_date":1706621850150,"end_date":1706623650150,"attendees":[{"id":11685972}],"public":false,"scheduled":false,"record":false,"created_at":"2024-01-30T13:37:35Z","updated_at":"2024-01-30T13:37:35Z","host_id":11686103,"notify":false,"notify_before":null,"chat_dialog_id":null,"timezone":null} I/flutter (25138): I/flutter (25138): CB-SDK: : createSession userId= 11686103 I/flutter (25138): 2024-01-30T15:37:31.060307: CB-SDK: : connect to wss://janus.connectycube.com:8989, janus-protocol I/flutter (25138): 2024-01-30T15:37:31.062594: CB-SDK: : SND(4): {"janus":"create","session_id":null,"transaction":"6a546c25-ad71-44ea-af62-dbbb18e07145","token":null} I/flutter (25138): 2024-01-30T15:37:32.122344: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "success", I/flutter (25138): "transaction": "6a546c25-ad71-44ea-af62-dbbb18e07145", I/flutter (25138): "data": { I/flutter (25138): "id": 4185303963219285 I/flutter (25138): } I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.success, sessionId=null} I/flutter (25138): 2024-01-30T15:37:32.123437: CB-SDK: JanusSignaler: startAutoSendPresence I/[CIO] (25138): track screen view event N/A D/[CIO] (25138): track screen view event N/A attributes: {} I/[CIO] (25138): ignoring track screen view event N/A because no profile currently identified I/flutter (25138): CB-SDK: : Can't perform operation [setMicrophoneMute], cause 'localStream' not initialised I/flutter (25138): 2024-01-30T15:37:32.141724: CB-SDK: : SND(4): {"janus":"attach","session_id":4185303963219285,"transaction":"151329fc-0d89-47a2-870b-35a935937f62","token":null,"plugin":"janus.plugin.videoroom"} I/flutter (25138): onCreate -- ChatV2Bloc I/flutter (25138): CB-SDK: PrivateCallLayout: [build] D/EGL_emulation(25138): app_time_stats: avg=304.25ms min=34.93ms max=1886.41ms count=7 I/flutter (25138): 2024-01-30T15:37:32.398350: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "success", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "151329fc-0d89-47a2-870b-35a935937f62", I/flutter (25138): "data": { I/flutter (25138): "id": 7220678286859778 I/flutter (25138): } I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.success, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:32.399464: CB-SDK: JanusSignaler: attachPlugin wsDataPacket= WsPacket{messageType=Type.success, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:32.400462: CB-SDK: : SND(4): {"janus":"message","session_id":4185303963219285,"transaction":"89736bba-b495-42d0-826e-754fa2f21e28","token":null,"handle_id":7220678286859778,"body":{"id":11686103,"ptype":"publisher","room":"65b8fb9fcf1208002f10bb87","display":"publisher","request":"join"}} I/flutter (25138): 2024-01-30T15:37:32.602074: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "89736bba-b495-42d0-826e-754fa2f21e28" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:32.612401: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "event", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "89736bba-b495-42d0-826e-754fa2f21e28", I/flutter (25138): "sender": 7220678286859778, I/flutter (25138): "plugindata": { I/flutter (25138): "plugin": "janus.plugin.videoroom", I/flutter (25138): "data": { I/flutter (25138): "videoroom": "joined", I/flutter (25138): "room": "65b8fb9fcf1208002f10bb87", I/flutter (25138): "description": "Room 65b8fb9fcf1208002f10bb87", I/flutter (25138): "id": 11686103, I/flutter (25138): "private_id": 1871923554, I/flutter (25138): "publishers": [] I/flutter (25138): } I/flutter (25138): } I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.event, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:32.614307: CB-SDK: JanusSignaler: JoinEvent publishers= [] , subscribers= null I/flutter (25138): 2024-01-30T15:37:32.614486: CB-SDK: : onJoinEvent I/flutter (25138): 2024-01-30T15:37:32.614713: CB-SDK: ConferenceSession: [onPeerConnectionStateChanged] the connection state of publisher changed to PeerConnectionState.RTC_CONNECTION_NEW I/flutter (25138): 2024-01-30T15:37:32.614862: CB-SDK: ConferenceSession: Make new channel with id: 1, Instance of 'ConferencePeerConnection' I/flutter (25138): CB-SDK: _ConversationCallScreenState: join session= [] I/flutter (25138): 2024-01-30T15:37:32.620758: CB-SDK: : SND(4): {"janus":"message","session_id":4185303963219285,"transaction":"eea5a5dd-0851-4af7-81a2-78d7ff1909bb","token":null,"handle_id":7220678286859778,"body":{"bitrate":0,"request":"configure"}} I/flutter (25138): CB-SDK: : {parameters: {message: Incoming Video call, call_type: 1, session_id: 642935f6-9771-4ec4-a489-476a2140a6f5, caller_id: 11686103, caller_name: test tutor , call_opponents: 11685972, photo_url: null, user_info: {"meeting_id":"65b8fb9fcf1208002f10bb87"}, start_call_date: null, signal_type: startCall, ios_voip: 1, expiration: 0, meeting_id: 65b8fb9fcf1208002f10bb87}, notificationType: push, environment: development, eventType: null, usersIds: [11685972], externalUsersIds: [], usersTagsAll: [], usersTagsAny: [], usersTagsExclude: [], date: null, endDate: null, period: null, name: null} I/flutter (25138): CB-SDK: : ========================================================= I/flutter (25138): === REQUEST ==== 762b2da1-1572-4fcc-9723-fa4d9060586f === I/flutter (25138): REQUEST I/flutter (25138): POST https://api.connectycube.com/chat/Message/system I/flutter (25138): HEADERS I/flutter (25138): {Content-type: application/json, ConnectyCube-REST-API-Version: 0.1.1, CB-SDK: Flutter 2.11.2, CB-Token: E4BEC3569D4BEF0B6CB7AE4EB128CA3BCBB4} I/flutter (25138): BODY I/flutter (25138): {"recipientId":11685972,"meeting_id":"65b8fb9fcf1208002f10bb87","session_id":"642935f6-9771-4ec4-a489-476a2140a6f5","startCall":"1","call_opponents":"11685972","call_type":"1","caller_name":"test tutor "} I/flutter (25138): I/flutter (25138): CB-SDK: : ========================================================= I/flutter (25138): === REQUEST ==== 49001088-c34e-4567-84c4-d0aaf8756dab === I/flutter (25138): REQUEST I/flutter (25138): POST https://api.connectycube.com/events I/flutter (25138): HEADERS I/flutter (25138): {Content-type: application/json, ConnectyCube-REST-API-Version: 0.1.1, CB-SDK: Flutter 2.11.2, CB-Token: E4BEC3569D4BEF0B6CB7AE4EB128CA3BCBB4} I/flutter (25138): BODY I/flutter (25138): {"event":{"id":null,"created_at":null,"updated_at":null,"notification_type":"push","environment":"development","message":"eyJtZXNzYWdlIjoiSW5jb21pbmcgVmlkZW8gY2FsbCIsImNhbGxfdHlwZSI6MSwic2Vzc2lvbl9pZCI6IjY0MjkzNWY2LTk3NzEtNGVjNC1hNDg5LTQ3NmEyMTQwYTZmNSIsImNhbGxlcl9pZCI6MTE2ODYxMDMsImNhbGxlcl9uYW1lIjoidGVzdCB0dXRvciAiLCJjYWxsX29wcG9uZW50cyI6IjExNjg1OTcyIiwicGhvdG9fdXJsIjpudWxsLCJ1c2VyX2luZm8iOiJ7XCJtZWV0aW5nX2lkXCI6XCI2NWI4ZmI5ZmNmMTIwODAwMmYxMGJiODdcIn0iLCJzdGFydF9jYWxsX2RhdGUiOm51bGwsInNpZ25hbF90eXBlIjoic3RhcnRDYWxsIiwiaW9zX3ZvaXAiOjEsImV4cGlyYXRpb24iOjAsIm1lZXRpbmdfaWQiOiI2NWI4ZmI5ZmNmMTIwODAwMmYxMGJiODcifQ==","user":{"ids":"11685972"}}} I/flutter (25138): I/FlutterWebRTCPlugin(25138): getUserMedia(audio): mandatory: [], optional: [googNoiseSuppression: true, googEchoCancellation: true, echoCancellation: true, googEchoCancellation2: true, googDAEchoCancellation: true] I/FlutterWebRTCPlugin(25138): getUserMedia(video): ConstraintsMap{mMap={frameRate=25, facingMode=user, width=1280, height=720}} D/FlutterWebRTCPlugin(25138): Creating video capturer using Camera2 API. D/FlutterWebRTCPlugin(25138): Create front camera 1 succeeded D/HostConnection(25138): createUnique: call D/HostConnection(25138): HostConnection::get() New Host Connection established 0x764f078b7850, tid 30745 D/HostConnection(25138): HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_dma_v1 ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2 ANDROID_EMU_YUV_Cache ANDROID_EMU_has_shared_slots_host_memory_allocator ANDROID_EMU_sync_buffer_data ANDROID_EMU_read_color_buffer_dma GL_OES_EGL_image_external_essl3 GL_OES_vertex_array_object GL_KHR_texture_compression_astc_ldr ANDROID_EMU_host_side_tracing ANDROID_EMU_gles_max_version_3_0 I/org.webrtc.Logging(25138): EglBase14Impl: Using OpenGL ES version 2 D/EGL_emulation(25138): eglCreateContext: 0x764f078b9d10: maj 3 min 0 rcv 3 D/EGL_emulation(25138): eglMakeCurrent: 0x764f078b9d10: ver 3 0 (tinfo 0x76512af51800) (first time) E/EGL_emulation(25138): eglQueryContext 32c0 EGL_BAD_ATTRIBUTE E/EGL_emulation(25138): tid 30745: eglQueryContext(2160): error 0x3004 (EGL_BAD_ATTRIBUTE) I/org.webrtc.Logging(25138): CameraCapturer: startCapture: 1280x720@25 I/org.webrtc.Logging(25138): Camera2Session: Create new camera2 session on camera 1 I/org.webrtc.Logging(25138): Camera2Session: start I/org.webrtc.Logging(25138): Camera2Session: Available preview sizes: [1920x1440, 1920x1080, 1920x960, 1600x1200, 1440x1080, 1280x960, 1280x720, 1024x768, 800x600, 720x480, 640x480, 640x360, 352x288, 320x240, 176x144] I/org.webrtc.Logging(25138): Camera2Session: Available fps ranges: [[15.0:15.0], [7.0:30.0], [15.0:30.0], [30.0:30.0]] I/org.webrtc.Logging(25138): Camera2Session: Using capture format: 1280x720@[7.0:30.0] I/org.webrtc.Logging(25138): Camera2Session: Opening camera 1 D/FlutterWebRTCPlugin(25138): CameraEventsHandler.onCameraOpening: cameraName=1 D/FlutterWebRTCPlugin(25138): changeCaptureFormat: 1280x720@25 D/FlutterWebRTCPlugin(25138): MediaStream id: beb4d103-00cd-46b7-942d-b7ecc8f78b83 I/flutter (25138): CB-SDK: _ConversationCallScreenState: _addLocalMediaStream I/flutter (25138): CB-SDK: _ConversationCallScreenState: [_addMediaStream] userId: 11686103, isLocalStream: true I/flutter (25138): CB-SDK: PeerConnection: _createOffer for opponent 1 I/flutter (25138): 2024-01-30T15:37:32.721489: CB-SDK: ConferenceSession: [onPeerConnectionStateChanged] the connection state of publisher changed to PeerConnectionState.RTC_CONNECTION_PENDING I/org.webrtc.Logging(25138): EglRenderer: Initializing EglRenderer I/org.webrtc.Logging(25138): EglRenderer: EglBase.create shared context D/HostConnection(25138): createUnique: call D/HostConnection(25138): HostConnection::get() New Host Connection established 0x764f078bbf90, tid 30746 D/HostConnection(25138): HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_dma_v1 ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2 ANDROID_EMU_YUV_Cache ANDROID_EMU_has_shared_slots_host_memory_allocator ANDROID_EMU_sync_buffer_data ANDROID_EMU_read_color_buffer_dma GL_OES_EGL_image_external_essl3 GL_OES_vertex_array_object GL_KHR_texture_compression_astc_ldr ANDROID_EMU_host_side_tracing ANDROID_EMU_gles_max_version_3_0 I/org.webrtc.Logging(25138): EglBase14Impl: Using OpenGL ES version 2 D/EGL_emulation(25138): eglCreateContext: 0x764f078b0110: maj 3 min 0 rcv 3 D/EGL_emulation(25138): eglMakeCurrent: 0x764f078b0110: ver 3 0 (tinfo 0x76512af51400) (first time) I/org.webrtc.Logging(25138): Camera2Session: Camera opened. W/FlutterWebRTCPlugin(25138): FlutterRTCVideoRenderer.setVideoTrack, set video track to a600ac83-74c4-4e68-b050-bc5aa86acf0b I/org.webrtc.Logging(25138): EglRenderer: Releasing. I/org.webrtc.Logging(25138): EglRenderer: eglBase detach and release. I/flutter (25138): CB-SDK: PeerConnection: onRenegotiationNeeded, connectionState: null I/flutter (25138): 2024-01-30T15:37:32.811457: CB-SDK: ConferenceSession: onSendOffer I/org.webrtc.Logging(25138): EglRenderer: Releasing done. I/org.webrtc.Logging(25138): EglRenderer: Quitting render thread. I/org.webrtc.Logging(25138): EglRenderer: Initializing EglRenderer I/org.webrtc.Logging(25138): EglRenderer: EglBase.create shared context D/HostConnection(25138): createUnique: call D/HostConnection(25138): HostConnection::get() New Host Connection established 0x764f078aced0, tid 30755 I/org.webrtc.Logging(25138): Camera2Session: Camera capture session configured. I/flutter (25138): 2024-01-30T15:37:32.817904: CB-SDK: : SND(4): {"janus":"message","session_id":4185303963219285,"transaction":"5652c365-619a-42b2-9d9e-3a5ae16dd0bc","token":null,"handle_id":7220678286859778,"jsep":{"type":"offer","sdp":"v=0\r\no=- 6712858901068218337 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE 0 1 2 3\r\na=extmap-allow-mixed\r\na=msid-semantic: WMS beb4d103-00cd-46b7-942d-b7ecc8f78b83\r\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 39 40 98 99 100 101 108 109 127\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:VAc4\r\na=ice-pwd:PWiBAiILZhkADsTLXEwPQ+l7\r\na=ice-options:trickle renomination\r\na=fingerprint:sha-256 4F:F4:51:2A:5D:F9:61:86:C5:27:D9:F9:C7:BF:C2:3A:2F:59:2C:91:FC:B1:A1:48:9F:79:1A:86:05:53:37:BD\r\na=setup:actpass\r\na=mid:0\r\na=extmap:1 urn:ietf:params:rtp-hdrext:toffset\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:3 urn:3gpp:video-orientation\r\na=extmap:4 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=extmap: I/org.webrtc.Logging(25138): Camera2Session: Stabilization not available. I/org.webrtc.Logging(25138): Camera2Session: Using continuous video auto-focus. I/org.webrtc.Logging(25138): Camera2Session: Camera device successfully started. I/org.webrtc.Logging(25138): CameraCapturer: Create session done. Switch state: IDLE I/org.webrtc.Logging(25138): SurfaceTextureHelper: Setting listener to org.webrtc.Camera2Session$CaptureSessionCallback$$ExternalSyntheticLambda0@7d3a488 D/HostConnection(25138): HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_dma_v1 ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2 ANDROID_EMU_YUV_Cache ANDROID_EMU_has_shared_slots_host_memory_allocator ANDROID_EMU_sync_buffer_data ANDROID_EMU_read_color_buffer_dma GL_OES_EGL_image_external_essl3 GL_OES_vertex_array_object GL_KHR_texture_compression_astc_ldr ANDROID_EMU_host_side_tracing ANDROID_EMU_gles_max_version_3_0 I/org.webrtc.Logging(25138): EglBase14Impl: Using OpenGL ES version 2 D/EGL_emulation(25138): eglCreateContext: 0x764f078b5c90: maj 3 min 0 rcv 3 D/EGL_emulation(25138): eglMakeCurrent: 0x764f078b5c90: ver 3 0 (tinfo 0x76512af51400) (first time) I/org.webrtc.Logging(25138): NetworkMonitor: Start monitoring with native observer 130082069794224 fieldTrialsString: W/org.webrtc.Logging(25138): NetworkMonitorAutoDetect: Unable to obtain permission to request a cellular network. I/org.webrtc.Logging(25138): NetworkMonitorAutoDetect: Network handle: 437197393933 becomes available: 101 I/org.webrtc.Logging(25138): NetworkMonitorAutoDetect: handle: 437197393933 capabilities changed: [ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED&NOT_VCN_MANAGED LinkUpBandwidth>=12000Kbps LinkDnBandwidth>=30000Kbps TransportInfo: <SSID: , BSSID: 02:00:00:00:00:00, MAC: 02:00:00:00:00:00, Security type: 0, Supplicant state: COMPLETED, Wi-Fi standard: 1, RSSI: -50, Link speed: 5Mbps, Tx Link speed: 5Mbps, Max Supported Tx Link speed: 11Mbps, Rx Link speed: 2Mbps, Max Supported Rx Link speed: 11Mbps, Frequency: 2447MHz, Net ID: -1, Metered hint: false, score: 60, CarrierMerged: false, SubscriptionId: -1, IsPrimary: -1> SignalStrength: -50] D/FlutterWebRTCPlugin(25138): onIceGatheringChangeGATHERING D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate I/org.webrtc.Logging(25138): NetworkMonitorAutoDetect: handle: 437197393933 link properties changed D/FlutterWebRTCPlugin(25138): CameraEventsHandler.onFirstFrameAvailable D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/EGL_emulation(25138): app_time_stats: avg=146.26ms min=20.33ms max=718.61ms count=7 D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate D/FlutterWebRTCPlugin(25138): onIceCandidate I/org.webrtc.Logging(25138): WebRtcAudioTrackExternal: initPlayout(sampleRate=44100, channels=1, bufferSizeFactor=1.0) I/org.webrtc.Logging(25138): WebRtcAudioTrackExternal: byteBuffer.capacity: 882 I/org.webrtc.Logging(25138): WebRtcAudioTrackExternal: minBufferSizeInBytes: 3912 I/org.webrtc.Logging(25138): WebRtcAudioTrackExternal: createAudioTrackBeforeOreo I/org.webrtc.Logging(25138): WebRtcAudioTrackExternal: nativeOutputSampleRate: 44100 I/org.webrtc.Logging(25138): WebRtcAudioTrackExternal: AudioTrack: session ID: 761, channels: 1, sample rate: 44100, max gain: 1.0 I/org.webrtc.Logging(25138): WebRtcAudioTrackExternal: AudioTrack: buffer size in frames: 1956 I/org.webrtc.Logging(25138): WebRtcAudioTrackExternal: AudioTrack: buffer capacity in frames: 1956 I/org.webrtc.Logging(25138): VolumeLogger: start@[name=worker_thread - 25775, id=192] I/org.webrtc.Logging(25138): VolumeLogger: audio mode is: MODE_NORMAL I/org.webrtc.Logging(25138): WebRtcAudioTrackExternal: startPlayout I/org.webrtc.Logging(25138): WebRtcAudioTrackExternal: AudioTrackThread@[name=AudioTrackJavaThread, id=482] I/org.webrtc.Logging(25138): WebRtcAudioTrackExternal: doAudioTrackStateCallback: 0 D/FlutterWebRTCPlugin(25138): onConnectionChangeCONNECTING D/FlutterWebRTCPlugin(25138): onIceCandidate I/flutter (25138): 2024-01-30T15:37:32.832984: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "eea5a5dd-0851-4af7-81a2-78d7ff1909bb" I/flutter (25138): } I/org.webrtc.Logging(25138): VolumeLogger: VOICE_CALL stream volume: 3 (max=5) I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:32.835900: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "event", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "eea5a5dd-0851-4af7-81a2-78d7ff1909bb", I/flutter (25138): "sender": 7220678286859778, I/flutter (25138): "plugindata": { I/flutter (25138): "plugin": "janus.plugin.videoroom", I/flutter (25138): "data": { I/flutter (25138): "videoroom": "event", I/flutter (25138): "room": "65b8fb9fcf1208002f10bb87", I/flutter (25138): "configured": "ok" I/flutter (25138): } I/flutter (25138): } I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.event, sessionId=4185303963219285} I/flutter (25138): CB-SDK: PrivateCallLayout: [didUpdateWidget] I/flutter (25138): CB-SDK: PrivateCallLayout: [build] I/flutter (25138): CB-SDK: PeerConnection: onSignalingState changed to RTCSignalingState.RTCSignalingStateHaveLocalOffer for opponent 1 I/flutter (25138): CB-SDK: PeerConnection: onIceGatheringState changed to RTCIceGatheringState.RTCIceGatheringStateGathering for opponent 1 I/flutter (25138): CB-SDK: BaseSession: onIceGatheringStateChanged state= RTCIceGatheringState.RTCIceGatheringStateGathering for userId= 1 I/flutter (25138): 2024-01-30T15:37:33.516479: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "5652c365-619a-42b2-9d9e-3a5ae16dd0bc" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:33.524014: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "event", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "5652c365-619a-42b2-9d9e-3a5ae16dd0bc", I/flutter (25138): "sender": 7220678286859778, I/flutter (25138): "plugindata": { I/flutter (25138): "plugin": "janus.plugin.videoroom", I/flutter (25138): "data": { I/flutter (25138): "videoroom": "event", I/flutter (25138): "room": "65b8fb9fcf1208002f10bb87", I/flutter (25138): "configured": "ok", I/flutter (25138): "audio_codec": "opus", I/flutter (25138): "video_codec": "vp8", I/flutter (25138): "streams": [ I/flutter (25138): { I/flutter (25138): "type": "video", I/flutter (25138): "mindex": 0, I/flutter (25138): "mid": "0", I/flutter (25138): "codec": "vp8", I/flutter (25138): "simulcast": true I/flutter (25138): }, I/flutter (25138): { I/flutter (25138): "type": "audio", I/flutter (25138): "mindex": 1, I/flutter (25138): "mid": "1", I/flutter (25138): "codec": "opus", I/flutter (25138): "fec": true I/flutter (25138): }, I/flutter (25138): { I/flutter (25138): "type": "audio", I/flutter (25138): "mindex": 2, I/flutter (25138): "mid": "2", I/flutter (25138): "disabled": true I/flutter (25138): }, I/flutter (25138): { I/flutter (25138): "type": "video", I/flutter (25138): "mindex": 3, I/flutter (25138): "mid": "3", I/flutter (25138): "disabled": true I/flutter (25138): } I/flutter (25138): ] I/flutter (25138): } I/flutter (25138): }, I/flutter (25138): "jsep": { I/flutter (25138): "type": "answer", I/flutter (25138): "sdp": "v=0\r\no=- 6712858901068218337 2 IN IP4 34.193.127.90\r\ns=VideoRoom 65b8fb9fcf1208002f10bb87\r\nt=0 0\r\na=group:BUNDLE 0 1 2 3\r\na=ice-options:trickle\r\na=fingerprint:sha-256 47:72:CF:11:72:F3:31:54:62:47:00:FC:A9:BD:B4:4E:44:63:56:FF:71:29:31:FC:A2:7B:21:35:E0:01:C1:9C\r\na=extmap-allow-mixed\r\na=msid-semantic: WMS *\r\nm=video 9 UDP/TLS/RTP/SAVPF 96 97\r\nc=IN IP4 34.193.127.90\r\na=recvonly\r\na=mid:0\r\na=rtcp-mux\r\na=ice-ufrag:nFmZ\r\na=ice-pwd:fjDxhyLxbNNhJRdMJ1/Vh0\r\na=ice-options:trickle\r\na=setup:active\r\na=rtpmap:96 VP8/90000\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=rtcp-fb:96 goog-remb\r\na=rtcp-fb:96 transport-cc\r\na=extmap:4 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=extmap:5 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\r\na=extmap:9 urn:ietf:params:rtp-hdrext:sdes:mid\r\na=extmap:10 urn:ietf:params:rtp-hdrext:sdes:rtp-stream-id\r\na=extmap:11 urn:ietf:params:rtp-hdrext:sdes:repaired-rtp-s I/flutter (25138): } I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.event, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:33.525284: CB-SDK: JanusSignaler: RemoteSDPEventAnswer wsEvent with sdp type= answer I/flutter (25138): 2024-01-30T15:37:33.525406: CB-SDK: ConferenceSession: onRemoteSDPEventAnswer I/flutter (25138): CB-SDK: PeerConnection: _drainIceCandidates I/flutter (25138): CB-SDK: PeerConnection: _drainIceCandidates, onSendIceCandidates I/flutter (25138): 2024-01-30T15:37:33.525655: CB-SDK: ConferenceSession: onSendIceCandidates I/flutter (25138): 2024-01-30T15:37:33.525713: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.526290: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"bfe44bb3-9c0f-402b-81f9-97e713769b05","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:2635808884 1 udp 2122260223 10.0.2.16 44612 typ host generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":0,"sdpMid":"0"}} I/flutter (25138): 2024-01-30T15:37:33.526962: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.528284: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"98849f03-3281-4962-bc7b-09d7d81fb46f","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:3897638268 1 udp 2121932543 127.0.0.1 56997 typ host generation 0 ufrag VAc4 network-id 3","sdpMLineIndex":0,"sdpMid":"0"}} I/flutter (25138): 2024-01-30T15:37:33.528549: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.528706: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"19de3c82-ffde-4655-936c-f038277be10d","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:1133787071 1 udp 2122187263 fec0::16b1:eb2d:30bc:a0 48319 typ host generation 0 ufrag VAc4 network-id 6 network-cost 10","sdpMLineIndex":0,"sdpMid":"0"}} I/flutter (25138): 2024-01-30T15:37:33.529080: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.530536: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"a91a4ac3-312a-4968-a638-dfa2b00a2c22","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:2962175797 1 udp 2122005759 ::1 33677 typ host generation 0 ufrag VAc4 network-id 4","sdpMLineIndex":0,"sdpMid":"0"}} I/flutter (25138): 2024-01-30T15:37:33.530795: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.530953: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"6329dd2b-5e3b-462e-b674-eee5544988c0","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:2635808884 1 udp 2122260223 10.0.2.16 40872 typ host generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":1,"sdpMid":"1"}} I/flutter (25138): 2024-01-30T15:37:33.531257: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.532821: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"b584f6c3-b3f0-4761-8b3a-cfa1c2a5eb4f","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:3897638268 1 udp 2121932543 127.0.0.1 38182 typ host generation 0 ufrag VAc4 network-id 3","sdpMLineIndex":1,"sdpMid":"1"}} I/flutter (25138): 2024-01-30T15:37:33.533259: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.533442: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"724442f8-d9df-454d-a293-97ecaa4fa63c","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:1133787071 1 udp 2122187263 fec0::16b1:eb2d:30bc:a0 52894 typ host generation 0 ufrag VAc4 network-id 6 network-cost 10","sdpMLineIndex":1,"sdpMid":"1"}} D/FlutterWebRTCPlugin(25138): onIceCandidate I/flutter (25138): 2024-01-30T15:37:33.533734: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.533886: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"6c006440-3140-48a9-afca-ab53512250d3","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:2962175797 1 udp 2122005759 ::1 44805 typ host generation 0 ufrag VAc4 network-id 4","sdpMLineIndex":1,"sdpMid":"1"}} I/flutter (25138): 2024-01-30T15:37:33.534113: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.534303: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"ad953485-6fcd-4728-8cb1-84986faa7fe4","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:2635808884 1 udp 2122260223 10.0.2.16 36260 typ host generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":2,"sdpMid":"2"}} I/flutter (25138): 2024-01-30T15:37:33.534611: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.535922: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"3773df3a-b63d-45b0-b9e6-1f47919dad58","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:3897638268 1 udp 2121932543 127.0.0.1 33248 typ host generation 0 ufrag VAc4 network-id 3","sdpMLineIndex":2,"sdpMid":"2"}} I/flutter (25138): 2024-01-30T15:37:33.536225: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.536361: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"fb8ff446-da84-4473-b2bd-4a9c464e43d2","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:1133787071 1 udp 2122187263 fec0::16b1:eb2d:30bc:a0 52577 typ host generation 0 ufrag VAc4 network-id 6 network-cost 10","sdpMLineIndex":2,"sdpMid":"2"}} I/flutter (25138): 2024-01-30T15:37:33.536587: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.536719: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"d2b7dac8-74bf-458e-80f2-9e7fca859f3f","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:2962175797 1 udp 2122005759 ::1 49675 typ host generation 0 ufrag VAc4 network-id 4","sdpMLineIndex":2,"sdpMid":"2"}} I/flutter (25138): 2024-01-30T15:37:33.538160: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.538311: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"14229b6b-ed01-4761-9ede-f4e10e6dc10d","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:2635808884 1 udp 2122260223 10.0.2.16 51440 typ host generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":3,"sdpMid":"3"}} I/flutter (25138): 2024-01-30T15:37:33.538615: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.538770: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"05290d9a-a941-4182-953f-c85f1b289044","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:3897638268 1 udp 2121932543 127.0.0.1 38766 typ host generation 0 ufrag VAc4 network-id 3","sdpMLineIndex":3,"sdpMid":"3"}} D/FlutterWebRTCPlugin(25138): onIceGatheringChangeCOMPLETE D/FlutterWebRTCPlugin(25138): onSelectedCandidatePairChanged D/FlutterWebRTCPlugin(25138): onSelectedCandidatePairChanged D/FlutterWebRTCPlugin(25138): onConnectionChangeCONNECTED I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: initRecording(sampleRate=44100, channels=1) I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: byteBuffer.capacity: 882 I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: AudioRecord.getMinBufferSize: 2688 I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: bufferSizeInBytes: 5376 I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: createAudioRecordOnMOrHigher I/org.webrtc.Logging(25138): WebRtcAudioEffectsExternal: enable(audioSession=769) I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: AudioRecord: session ID: 769, channels: 1, sample rate: 44100 I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: AudioRecord: buffer size in frames: 2688 I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: Number of active recording sessions: 0 I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: startRecording I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: scheduleLogRecordingConfigurationsTask I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: AudioRecordThread@[name=AudioRecordJavaThread, id=484] I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: doAudioRecordStateCallback: START I/org.webrtc.Logging(25138): CameraStatistics: Camera fps: 1. I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: Number of active recording sessions: 1 I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: AudioRecordingConfigurations: I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: client audio source=VOICE_COMMUNICATION, client session id=769 (769) I/org.webrtc.Logging(25138): Device AudioFormat: channel count=2, channel index mask=0, channel mask=IN_STEREO, encoding=PCM_16BIT, sample rate=44100 I/org.webrtc.Logging(25138): Client AudioFormat: channel count=1, channel index mask=0, channel mask=IN_MONO, encoding=PCM_16BIT, sample rate=44100 I/org.webrtc.Logging(25138): AudioDevice: type=TYPE_BUILTIN_MIC, id=8 I/org.webrtc.Logging(25138): WebRtcAudioRecordExternal: verifyAudioConfig: PASS I/org.webrtc.Logging(25138): GlShader: Deleting shader. D/EGL_emulation(25138): app_time_stats: avg=518.92ms min=289.86ms max=673.56ms count=3 I/flutter (25138): 2024-01-30T15:37:33.540180: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.540359: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"6e09aff5-649d-4eb6-bc06-9e7094a40240","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:1133787071 1 udp 2122187263 fec0::16b1:eb2d:30bc:a0 53360 typ host generation 0 ufrag VAc4 network-id 6 network-cost 10","sdpMLineIndex":3,"sdpMid":"3"}} I/flutter (25138): 2024-01-30T15:37:33.541345: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.541489: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"e49c84b1-fb37-4612-a253-c93907e6db9d","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:2962175797 1 udp 2122005759 ::1 59204 typ host generation 0 ufrag VAc4 network-id 4","sdpMLineIndex":3,"sdpMid":"3"}} I/flutter (25138): 2024-01-30T15:37:33.541765: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.541941: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"a123320d-dd57-4458-8183-91534de1ac86","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:1001340360 1 tcp 1518149375 10.0.2.15 9 typ host tcptype active generation 0 ufrag VAc4 network-id 1 network-cost 900","sdpMLineIndex":0,"sdpMid":"0"}} I/flutter (25138): 2024-01-30T15:37:33.542164: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.543552: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"c1ba3340-773f-48b8-aead-7e503a991bc1","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:385608168 1 tcp 1517952767 127.0.0.1 47841 typ host tcptype passive generation 0 ufrag VAc4 network-id 3","sdpMLineIndex":0,"sdpMid":"0"}} I/flutter (25138): 2024-01-30T15:37:33.543828: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.544: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"3ed9cedb-83c6-4eda-a4fd-5b4edb025f4d","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:4012300004 1 tcp 1518076415 fec0::5054:ff:fe12:3456 9 typ host tcptype active generation 0 ufrag VAc4 network-id 2 network-cost 900","sdpMLineIndex":0,"sdpMid":"0"}} I/flutter (25138): 2024-01-30T15:37:33.544273: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.544420: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"1cb2fec8-0a9c-45d1-89b2-12d54c458aea","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:1311105953 1 tcp 1518025983 ::1 42967 typ host tcptype passive generation 0 ufrag VAc4 network-id 4","sdpMLineIndex":0,"sdpMid":"0"}} I/flutter (25138): 2024-01-30T15:37:33.545932: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.546122: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"03bcfb6f-9e44-4177-8fb2-48b3b3e5c6fb","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:1001340360 1 tcp 1518149375 10.0.2.15 9 typ host tcptype active generation 0 ufrag VAc4 network-id 1 network-cost 900","sdpMLineIndex":1,"sdpMid":"1"}} I/flutter (25138): 2024-01-30T15:37:33.546365: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.546514: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"f84d775a-83e7-4ab5-84b0-5a67602e2780","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:385608168 1 tcp 1517952767 127.0.0.1 51567 typ host tcptype passive generation 0 ufrag VAc4 network-id 3","sdpMLineIndex":1,"sdpMid":"1"}} I/flutter (25138): 2024-01-30T15:37:33.546822: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.547006: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"c0ef79e2-08aa-4c78-b737-b78051099a53","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:4012300004 1 tcp 1518076415 fec0::5054:ff:fe12:3456 9 typ host tcptype active generation 0 ufrag VAc4 network-id 2 network-cost 900","sdpMLineIndex":1,"sdpMid":"1"}} I/flutter (25138): 2024-01-30T15:37:33.547318: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.547489: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"6422e4bc-86aa-49cf-9618-1595359b2c75","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:1311105953 1 tcp 1518025983 ::1 57353 typ host tcptype passive generation 0 ufrag VAc4 network-id 4","sdpMLineIndex":1,"sdpMid":"1"}} I/flutter (25138): 2024-01-30T15:37:33.549363: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.549604: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"b8f62bc3-f0ea-4acc-869d-be1815e2c351","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:1001340360 1 tcp 1518149375 10.0.2.15 9 typ host tcptype active generation 0 ufrag VAc4 network-id 1 network-cost 900","sdpMLineIndex":2,"sdpMid":"2"}} I/flutter (25138): 2024-01-30T15:37:33.551045: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.551244: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"678923fe-d083-406b-9a27-7a13534bd568","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:385608168 1 tcp 1517952767 127.0.0.1 47979 typ host tcptype passive generation 0 ufrag VAc4 network-id 3","sdpMLineIndex":2,"sdpMid":"2"}} I/flutter (25138): 2024-01-30T15:37:33.551805: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.551969: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"cdf28d20-0935-41ec-8235-075ba73c945f","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:4012300004 1 tcp 1518076415 fec0::5054:ff:fe12:3456 9 typ host tcptype active generation 0 ufrag VAc4 network-id 2 network-cost 900","sdpMLineIndex":2,"sdpMid":"2"}} I/flutter (25138): 2024-01-30T15:37:33.553242: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.553411: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"0e1fd88c-ce45-4e25-8493-bc3c26e83a6a","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:452290745 1 udp 1686052607 196.153.175.122 14806 typ srflx raddr 10.0.2.16 rport 44612 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":0,"sdpMid":"0"}} I/flutter (25138): 2024-01-30T15:37:33.553515: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.553663: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"4e9850b3-04b3-4a45-a2fe-381dc0be25bd","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:452290745 1 udp 1686052607 196.153.175.122 14807 typ srflx raddr 10.0.2.16 rport 51440 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":3,"sdpMid":"3"}} I/flutter (25138): 2024-01-30T15:37:33.553726: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.554276: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"861ad5f1-f418-4b5b-9d10-625a30fed3c6","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:1311105953 1 tcp 1518025983 ::1 58951 typ host tcptype passive generation 0 ufrag VAc4 network-id 4","sdpMLineIndex":2,"sdpMid":"2"}} I/flutter (25138): 2024-01-30T15:37:33.554384: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.554523: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"1b268027-e7f5-479f-ab2b-fb3cfad2804e","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:1001340360 1 tcp 1518149375 10.0.2.15 9 typ host tcptype active generation 0 ufrag VAc4 network-id 1 network-cost 900","sdpMLineIndex":3,"sdpMid":"3"}} I/flutter (25138): 2024-01-30T15:37:33.554581: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.554707: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"d714eb46-67ce-423b-89a3-7b9cdefee632","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:385608168 1 tcp 1517952767 127.0.0.1 56893 typ host tcptype passive generation 0 ufrag VAc4 network-id 3","sdpMLineIndex":3,"sdpMid":"3"}} I/flutter (25138): 2024-01-30T15:37:33.554776: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.554911: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"4a858e46-eafe-44ef-9def-302e7a8c705d","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:4012300004 1 tcp 1518076415 fec0::5054:ff:fe12:3456 9 typ host tcptype active generation 0 ufrag VAc4 network-id 2 network-cost 900","sdpMLineIndex":3,"sdpMid":"3"}} I/flutter (25138): 2024-01-30T15:37:33.554965: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.555093: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"fdf82a91-ff38-4164-a68f-d27ba19512d6","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:1311105953 1 tcp 1518025983 ::1 33481 typ host tcptype passive generation 0 ufrag VAc4 network-id 4","sdpMLineIndex":3,"sdpMid":"3"}} I/flutter (25138): 2024-01-30T15:37:33.555156: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.556484: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"15710a57-810a-43ec-9f2b-70d39d0b9c15","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:452290745 1 udp 1686052607 196.153.175.122 14828 typ srflx raddr 10.0.2.16 rport 40872 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":1,"sdpMid":"1"}} I/flutter (25138): 2024-01-30T15:37:33.556594: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.556727: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"2aeead2c-577f-4501-b847-865241d5321d","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:452290745 1 udp 1686052607 196.153.175.122 14829 typ srflx raddr 10.0.2.16 rport 36260 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":2,"sdpMid":"2"}} I/flutter (25138): 2024-01-30T15:37:33.556789: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.556947: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"f2fc010d-8f7d-42a8-aeeb-e453d9888645","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:452290745 1 udp 1686052607 196.153.175.122 14837 typ srflx raddr 10.0.2.16 rport 40872 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":1,"sdpMid":"1"}} I/flutter (25138): 2024-01-30T15:37:33.557035: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.557182: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"f10087cc-7d91-40e7-ad0c-ca15d60e659f","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:452290745 1 udp 1686052607 196.153.175.122 14796 typ srflx raddr 10.0.2.16 rport 36260 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":2,"sdpMid":"2"}} I/flutter (25138): 2024-01-30T15:37:33.557250: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.557375: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"3deb5667-148b-43dd-9101-ed8ee649a3ce","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:452290745 1 udp 1686052607 196.153.175.122 14751 typ srflx raddr 10.0.2.16 rport 40872 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":1,"sdpMid":"1"}} I/flutter (25138): 2024-01-30T15:37:33.558639: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.558797: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"273ba88b-1275-4a5a-8601-364342e2571c","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:452290745 1 udp 1686052607 196.153.175.122 14790 typ srflx raddr 10.0.2.16 rport 44612 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":0,"sdpMid":"0"}} I/flutter (25138): 2024-01-30T15:37:33.558862: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.559036: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"c2467cf6-6793-462f-a707-2a2fca2989dc","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:452290745 1 udp 1686052607 196.153.175.122 14817 typ srflx raddr 10.0.2.16 rport 51440 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":3,"sdpMid":"3"}} I/flutter (25138): 2024-01-30T15:37:33.559116: CB-SDK: ConferenceSession: onSendIceCandidate D/EGL_emulation(25138): app_time_stats: avg=110.55ms min=48.54ms max=418.74ms count=8 I/uage.taaly.tes(25138): NativeAlloc concurrent copying GC freed 310587(9779KB) AllocSpace objects, 47(1104KB) LOS objects, 49% free, 11MB/23MB, paused 7.108ms,53us total 574.108ms I/flutter (25138): 2024-01-30T15:37:33.559264: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"341088fd-e206-468d-a886-9cfdf3ab4a3e","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:452290745 1 udp 1686052607 196.153.175.122 14793 typ srflx raddr 10.0.2.16 rport 36260 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":2,"sdpMid":"2"}} I/flutter (25138): 2024-01-30T15:37:33.559327: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.559452: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"2e69d03c-f314-49a7-8567-51def3e9ea15","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:452290745 1 udp 1686052607 196.153.175.122 14784 typ srflx raddr 10.0.2.16 rport 44612 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":0,"sdpMid":"0"}} I/flutter (25138): 2024-01-30T15:37:33.559513: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.566255: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"3f812c20-6f7b-4e0d-b293-fc30c4d48ed8","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:452290745 1 udp 1686052607 196.153.175.122 14823 typ srflx raddr 10.0.2.16 rport 51440 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":3,"sdpMid":"3"}} I/flutter (25138): CB-SDK: PeerConnection: onSignalingState changed to RTCSignalingState.RTCSignalingStateStable for opponent 1 I/flutter (25138): 2024-01-30T15:37:33.697141: CB-SDK: PeerConnection: onIceConnectionState changed to RTCIceConnectionState.RTCIceConnectionStateChecking for opponent 1 I/flutter (25138): 2024-01-30T15:37:33.697240: CB-SDK: ConferenceSession: [onPeerConnectionStateChanged] the connection state of publisher changed to PeerConnectionState.RTC_CONNECTION_CHECKING I/flutter (25138): 2024-01-30T15:37:33.753955: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.754235: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"f5560be4-abde-448a-9d78-ad255ab7e10f","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:1989762259 1 udp 25108479 3.121.84.95 51208 typ relay raddr 196.153.175.122 rport 14735 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":0,"sdpMid":"0"}} I/flutter (25138): 2024-01-30T15:37:33.930374: CB-SDK: ConferenceSession: onSendIceCandidate I/flutter (25138): 2024-01-30T15:37:33.933553: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"15793da6-96f4-4e6b-bedf-865ca43d4933","token":null,"handle_id":7220678286859778,"candidate":{"candidate":"candidate:2712250647 1 udp 41885951 35.158.208.53 38981 typ relay raddr 196.153.175.122 rport 14775 generation 0 ufrag VAc4 network-id 5 network-cost 10","sdpMLineIndex":0,"sdpMid":"0"}} I/flutter (25138): 2024-01-30T15:37:33.982159: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "bfe44bb3-9c0f-402b-81f9-97e713769b05" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:33.997628: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "98849f03-3281-4962-bc7b-09d7d81fb46f" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.007259: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "19de3c82-ffde-4655-936c-f038277be10d" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): CB-SDK: : *** I/flutter (25138): * RESPONSE 201 762b2da1-1572-4fcc-9723-fa4d9060586f * I/flutter (25138): HEADERS I/flutter (25138): {cb-token-expirationdate: 2024-01-30 15:37:38 UTC, connection: keep-alive, date: Tue, 30 Jan 2024 13:37:38 GMT, strict-transport-security: max-age=15768000; includeSubDomains, content-length: 304, access-control-expose-headers: CB-Token-ExpirationDate, Date, content-type: application/json; charset=utf-8, server: nginx/1.25.0} I/flutter (25138): BODY I/flutter (25138): {"messageId":"65b8fba229d6c5002fdaee84","recipientId":11685972,"extensionParams":{"meeting_id":"65b8fb9fcf1208002f10bb87","session_id":"642935f6-9771-4ec4-a489-476a2140a6f5","startCall":"1","call_opponents":"11685972","call_type":"1","caller_name":"test tutor ","moduleIdentifier":"SystemNotifications"}} I/flutter (25138): I/flutter (25138): CB-SDK: : parseCallMessage cubeMessage= {_id: 65b8fba229d6c5002fdaee84, chat_dialog_id: null, message: null, date_sent: 0, sender_id: 11686103, recipient_id: 11685972, read_ids: null, delivered_ids: null, views_count: null, attachments: [], reactions: null, id: null, created_at: null, updated_at: null, caller_name: test tutor , meeting_id: 65b8fb9fcf1208002f10bb87, session_id: 642935f6-9771-4ec4-a489-476a2140a6f5, call_opponents: 11685972, startCall: 1, call_type: 1, moduleIdentifier: SystemNotifications} I/flutter (25138): 2024-01-30T15:37:34.136262: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "a91a4ac3-312a-4968-a638-dfa2b00a2c22" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.153307: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "6329dd2b-5e3b-462e-b674-eee5544988c0" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.157864: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "b584f6c3-b3f0-4761-8b3a-cfa1c2a5eb4f" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.214085: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "724442f8-d9df-454d-a293-97ecaa4fa63c" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): CB-SDK: : *** I/flutter (25138): RESPONSE 201 49001088-c34e-4567-84c4-d0aaf8756dab I/flutter (25138): HEADERS I/flutter (25138): {cb-token-expirationdate: 2024-01-30 15:37:38 UTC, connection: keep-alive, date: Tue, 30 Jan 2024 13:37:38 GMT, strict-transport-security: max-age=15768000; includeSubDomains, content-length: 1696, access-control-expose-headers: CB-Token-ExpirationDate, Date, content-type: application/json; charset=utf-8, server: nginx/1.25.0} I/flutter (25138): BODY I/flutter (25138): [{"event":{"_id":"65b8fba2cf1208002f10bb89","event_type":"one_shot","message":"eyJtZXNzYWdlIjoiSW5jb21pbmcgVmlkZW8gY2FsbCIsImNhbGxfdHlwZSI6MSwic2Vzc2lvbl9pZCI6IjY0MjkzNWY2LTk3NzEtNGVjNC1hNDg5LTQ3NmEyMTQwYTZmNSIsImNhbGxlcl9pZCI6MTE2ODYxMDMsImNhbGxlcl9uYW1lIjoidGVzdCB0dXRvciAiLCJjYWxsX29wcG9uZW50cyI6IjExNjg1OTcyIiwicGhvdG9fdXJsIjpudWxsLCJ1c2VyX2luZm8iOiJ7XCJtZWV0aW5nX2lkXCI6XCI2NWI4ZmI5ZmNmMTIwODAwMmYxMGJiODdcIn0iLCJzdGFydF9jYWxsX2RhdGUiOm51bGwsInNpZ25hbF90eXBlIjoic3RhcnRDYWxsIiwiaW9zX3ZvaXAiOjEsImV4cGlyYXRpb24iOjAsIm1lZXRpbmdfaWQiOiI2NWI4ZmI5ZmNmMTIwODAwMmYxMGJiODcifQ==","user_id":11686103,"environment":"development","date":null,"period":null,"kind":"API","end_date":null,"active":true,"created_at":"2024-01-30T13:37:38Z","updated_at":"2024-01-30T13:37:38Z","tag_query":null,"name":null,"notification_channel":{"name":"gcm"},"id":105130732}},{"event":{"_id":"65b8fba2cf1208002f10bb8a","event_type":"one_shot","message":"eyJtZXNzYWdlIjoiSW5jb21pbmcgVmlkZW8gY2FsbCIsImNhbGxfdHlwZSI6MSwic2Vzc2lvbl9pZCI6IjY0MjkzNWY2LT I/flutter (25138): I/flutter (25138): CB-SDK: : Event for Offliners created: [{id: 105130732, created_at: 2024-01-30T13:37:38.000Z, updated_at: 2024-01-30T13:37:38.000Z, notification_type: null, environment: development, message: {message: Incoming Video call, call_type: 1, session_id: 642935f6-9771-4ec4-a489-476a2140a6f5, caller_id: 11686103, caller_name: test tutor , call_opponents: 11685972, photo_url: null, user_info: {"meeting_id":"65b8fb9fcf1208002f10bb87"}, start_call_date: null, signal_type: startCall, ios_voip: 1, expiration: 0, meeting_id: 65b8fb9fcf1208002f10bb87}, event_type: one_shot, notification_channel: gcm, user_id: 11686103}, {id: 642682034, created_at: 2024-01-30T13:37:38.000Z, updated_at: 2024-01-30T13:37:38.000Z, notification_type: null, environment: production, message: {message: Incoming Video call, call_type: 1, session_id: 642935f6-9771-4ec4-a489-476a2140a6f5, caller_id: 11686103, caller_name: test tutor , call_opponents: 11685972, photo_url: null, user_info: {"meeting_id":"65b8fb9fcf1208002f10bb87"}, start_call_date: nu I/flutter (25138): 2024-01-30T15:37:34.236248: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "6c006440-3140-48a9-afca-ab53512250d3" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.238962: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "ad953485-6fcd-4728-8cb1-84986faa7fe4" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): CB-SDK: PeerConnection: onIceGatheringState changed to RTCIceGatheringState.RTCIceGatheringStateComplete for opponent 1 I/flutter (25138): CB-SDK: BaseSession: onIceGatheringStateChanged state= RTCIceGatheringState.RTCIceGatheringStateComplete for userId= 1 I/flutter (25138): 2024-01-30T15:37:34.241860: CB-SDK: ConferenceSession: signaler sendIceCandidateComplete for userId= 1 I/flutter (25138): 2024-01-30T15:37:34.242139: CB-SDK: : SND(4): {"janus":"trickle","session_id":4185303963219285,"transaction":"3d9f8843-086e-45cc-8c7d-e2a28901b82b","token":null,"handle_id":7220678286859778,"candidate":{"completed":true}} I/flutter (25138): 2024-01-30T15:37:34.244830: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "3773df3a-b63d-45b0-b9e6-1f47919dad58" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.246554: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "fb8ff446-da84-4473-b2bd-4a9c464e43d2" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.248591: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "d2b7dac8-74bf-458e-80f2-9e7fca859f3f" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.250560: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "14229b6b-ed01-4761-9ede-f4e10e6dc10d" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.252472: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "05290d9a-a941-4182-953f-c85f1b289044" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.256094: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "6e09aff5-649d-4eb6-bc06-9e7094a40240" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.258056: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "e49c84b1-fb37-4612-a253-c93907e6db9d" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.260186: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "a123320d-dd57-4458-8183-91534de1ac86" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.260900: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "c1ba3340-773f-48b8-aead-7e503a991bc1" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} D/EGL_emulation(25138): app_time_stats: avg=201.38ms min=18.80ms max=1294.80ms count=12 I/org.webrtc.Logging(25138): EglRenderer: Duration: 4009 ms. Frames received: 19. Dropped: 0. Rendered: 19. Render fps: 4.7. Average render time: 110333 us. Average swapBuffer time: 87026 us. I/org.webrtc.Logging(25138): CameraStatistics: Camera fps: 9. D/EGL_emulation(25138): app_time_stats: avg=102.98ms min=53.72ms max=192.45ms count=10 I/flutter (25138): 2024-01-30T15:37:34.262554: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "3ed9cedb-83c6-4eda-a4fd-5b4edb025f4d" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.268122: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "1cb2fec8-0a9c-45d1-89b2-12d54c458aea" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.269655: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "03bcfb6f-9e44-4177-8fb2-48b3b3e5c6fb" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.271155: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "f84d775a-83e7-4ab5-84b0-5a67602e2780" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.272062: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "c0ef79e2-08aa-4c78-b737-b78051099a53" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.274322: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "6422e4bc-86aa-49cf-9618-1595359b2c75" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.276862: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "b8f62bc3-f0ea-4acc-869d-be1815e2c351" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.285740: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "678923fe-d083-406b-9a27-7a13534bd568" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.286949: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "cdf28d20-0935-41ec-8235-075ba73c945f" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.287996: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "0e1fd88c-ce45-4e25-8493-bc3c26e83a6a" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.288621: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "4e9850b3-04b3-4a45-a2fe-381dc0be25bd" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.289104: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "861ad5f1-f418-4b5b-9d10-625a30fed3c6" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.289772: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "1b268027-e7f5-479f-ab2b-fb3cfad2804e" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.291056: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "d714eb46-67ce-423b-89a3-7b9cdefee632" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.291707: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "4a858e46-eafe-44ef-9def-302e7a8c705d" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.292163: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "fdf82a91-ff38-4164-a68f-d27ba19512d6" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.292635: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "15710a57-810a-43ec-9f2b-70d39d0b9c15" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.293151: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "2aeead2c-577f-4501-b847-865241d5321d" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.293622: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "f2fc010d-8f7d-42a8-aeeb-e453d9888645" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.294023: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "f10087cc-7d91-40e7-ad0c-ca15d60e659f" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.294453: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "3deb5667-148b-43dd-9101-ed8ee649a3ce" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.294909: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "273ba88b-1275-4a5a-8601-364342e2571c" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.295408: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "c2467cf6-6793-462f-a707-2a2fca2989dc" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.295870: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "341088fd-e206-468d-a886-9cfdf3ab4a3e" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.296282: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "2e69d03c-f314-49a7-8567-51def3e9ea15" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.296678: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "3f812c20-6f7b-4e0d-b293-fc30c4d48ed8" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.297618: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "f5560be4-abde-448a-9d78-ad255ab7e10f" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.298035: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "15793da6-96f4-4e6b-bedf-865ca43d4933" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.425795: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "ack", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "transaction": "3d9f8843-086e-45cc-8c7d-e2a28901b82b" I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.ack, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:34.709847: CB-SDK: PeerConnection: onIceConnectionState changed to RTCIceConnectionState.RTCIceConnectionStateConnected for opponent 1 I/flutter (25138): 2024-01-30T15:37:34.709918: CB-SDK: ConferenceSession: [onPeerConnectionStateChanged] the connection state of publisher changed to PeerConnectionState.RTC_CONNECTION_CONNECTED I/flutter (25138): 2024-01-30T15:37:35.178589: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "webrtcup", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "sender": 7220678286859778 I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.webrtcup, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:35.179622: CB-SDK: JanusSignaler: WsWebRTCUp packet sender= 7220678286859778 I/flutter (25138): 2024-01-30T15:37:35.179839: CB-SDK: ConferenceSession: onWebRTCUpReceived senderId= 7220678286859778 I/flutter (25138): 2024-01-30T15:37:35.179871: CB-SDK: : became a publisher I/flutter (25138): 2024-01-30T15:37:35.179926: CB-SDK: : autoSubscribeToPublisher enabled I/flutter (25138): 2024-01-30T15:37:35.180491: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "media", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "sender": 7220678286859778, I/flutter (25138): "mid": "1", I/flutter (25138): "type": "audio", I/flutter (25138): "receiving": true I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.media, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:35.180669: CB-SDK: JanusSignaler: WsMedia packet type= audio, receiving= true I/flutter (25138): 2024-01-30T15:37:35.180693: CB-SDK: ConferenceSession: onMediaReceived I/flutter (25138): 2024-01-30T15:37:35.399095: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "media", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "sender": 7220678286859778, I/flutter (25138): "mid": "0", I/flutter (25138): "type": "video", I/flutter (25138): "substream": 1, I/flutter (25138): "receiving": true I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.media, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:35.399336: CB-SDK: JanusSignaler: WsMedia packet type= video, receiving= true I/flutter (25138): 2024-01-30T15:37:35.399371: CB-SDK: ConferenceSession: onMediaReceived I/flutter (25138): 2024-01-30T15:37:35.410006: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "media", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "sender": 7220678286859778, I/flutter (25138): "mid": "0", I/flutter (25138): "type": "video", I/flutter (25138): "substream": 0, I/flutter (25138): "receiving": true I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.media, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:35.410241: CB-SDK: JanusSignaler: WsMedia packet type= video, receiving= true I/flutter (25138): 2024-01-30T15:37:35.410287: CB-SDK: ConferenceSession: onMediaReceived I/flutter (25138): 2024-01-30T15:37:36.197042: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "media", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "sender": 7220678286859778, I/flutter (25138): "mid": "0", I/flutter (25138): "type": "video", I/flutter (25138): "substream": 2, I/flutter (25138): "receiving": true I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.media, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:36.197397: CB-SDK: JanusSignaler: WsMedia packet type= video, receiving= true I/flutter (25138): 2024-01-30T15:37:36.197452: CB-SDK: ConferenceSession: onMediaReceived D/EGL_emulation(25138): app_time_stats: avg=84.99ms min=33.76ms max=190.03ms count=12 D/EGL_emulation(25138): app_time_stats: avg=89.69ms min=39.29ms max=210.87ms count=10 D/EGL_emulation(25138): app_time_stats: avg=86.73ms min=36.97ms max=118.71ms count=12 I/flutter (25138): 2024-01-30T15:37:38.806795: CB-SDK: : RCV(4): { I/flutter (25138): "janus": "media", I/flutter (25138): "session_id": 4185303963219285, I/flutter (25138): "sender": 7220678286859778, I/flutter (25138): "mid": "0", I/flutter (25138): "type": "video", I/flutter (25138): "substream": 2, I/flutter (25138): "receiving": false I/flutter (25138): } I/flutter (25138): CB-SDK: : _onPacketReceived= WsPacket{messageType=Type.media, sessionId=4185303963219285} I/flutter (25138): 2024-01-30T15:37:38.810198: CB-SDK: JanusSignaler: WsMedia packet type= video, receiving= false I/flutter (25138): 2024-01-30T15:37:38.810447: CB-SDK: ConferenceSession: onMediaReceived I/org.webrtc.Logging(25138): CameraStatistics: Camera fps: 11. D/EGL_emulation(25138): app_time_stats: avg=81.68ms min=65.88ms max=104.53ms count=12 D/EGL_emulation(25138): app_time_stats: avg=87.40ms min=60.27ms max=110.11ms count=12 D/EGL_emulation(25138): app_time_stats: avg=85.26ms min=54.48ms max=108.25ms count=12 D/EGL_emulation(25138): app_time_stats: avg=88.96ms min=63.62ms max=105.41ms count=12 I/org.webrtc.Logging(25138): EglRenderer: Duration: 4005 ms. Frames received: 45. Dropped: 0. Rendered: 45. Render fps: 11.2. Average render time: 31583 us. Average swapBuffer time: 27679 us. I/org.webrtc.Logging(25138): CameraStatistics: Camera fps: 11. D/EGL_emulation(25138): app_time_stats: avg=83.48ms min=43.48ms max=121.79ms count=12 D/EGL_emulation(25138): app_time_stats: avg=89.57ms min=34.51ms max=141.62ms count=12 D/EGL_emulation(25138): app_time_stats: avg=84.41ms min=56.10ms max=110.68ms count=12 D/EGL_emulation(25138): app_time_stats: avg=92.58ms min=33.96ms max=168.58ms count=11 I/org.webrtc.Logging(25138): CameraStatistics: Camera fps: 12.

`

-- Receiver side

` E/FlutterConnectycubeBackgroundExecutor(32037): action_call_incoming background handler has not been registered. W/FlutterWebRTCPlugin(32037): audioFocusChangeListener [Earpiece(name=Earpiece)] Earpiece(name=Earpiece) W/FlutterWebRTCPlugin(32037): audioFocusChangeListener [Speakerphone(name=Speakerphone), Earpiece(name=Earpiece)] Speakerphone(name=Speakerphone) I/flutter (32037): "SilentData": { I/flutter (32037): "call_opponents": "11685972", I/flutter (32037): "call_type": "1", I/flutter (32037): "caller_id": "11686103", I/flutter (32037): "caller_name": "test tutor ", I/flutter (32037): "createdDate": "2024-01-30 13:38:03.000Z", I/flutter (32037): "createdLifeCycle": "Terminated", I/flutter (32037): "createdSource": "Firebase", I/flutter (32037): "expiration": "0", I/flutter (32037): "id": null, I/flutter (32037): "meeting_id": "65b8fb9fcf1208002f10bb87", I/flutter (32037): "message": "Incoming Video call", I/flutter (32037): "session_id": "642935f6-9771-4ec4-a489-476a2140a6f5", I/flutter (32037): "signal_type": "startCall", I/flutter (32037): "user_info": "{\"meeting_id\":\"65b8fb9fcf1208002f10bb87\"}" I/flutter (32037): } I/flutter (32037): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter (32037): │ #0 NotificationServiceProvider.mySilentDataHandle (package:taaly_user_mobile_app/core/general/providers/awesome_notification_provider.dart:174:12) I/flutter (32037): │ #1 receiveSilentData (package:awesome_notifications_fcm/src/isolates/silent_push_isolate_main.dart:61:51) I/flutter (32037): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter (32037): │ 👾 mySilentDataHandle() silentData.data {meeting_id: 65b8fb9fcf1208002f10bb87, session_id: 642935f6-9771-4ec4-a489-476a2140a6f5, message: Incoming Video call, signal_type: startCall, caller_name: test tutor , user_info: {"meeting_id":"65b8fb9fcf1208002f10bb87"}, caller_id: 11686103, expiration: 0, call_opponents: 11685972, call_type: 1, id: null, createdDate: 2024-01-30 13:38:03.000Z, createdSource: Firebase, createdLifeCycle: Terminated} I/flutter (32037): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter (32037): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter (32037): │ #0 NotificationServiceProvider.mySilentDataHandle (package:taaly_user_mobile_app/core/general/providers/awesome_notification_provider.dart:176:10) I/flutter (32037): │ #1 receiveSilentData (package:awesome_notifications_fcm/src/isolates/silent_push_isolate_main.dart:61:51) I/flutter (32037): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter (32037): │ 👾 mySilentDataHandle() silentData.data 2024-01-30 13:38:03.000Z I/flutter (32037): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── D/FlutterWebRTCPlugin(32037): Stopping the audio manager...

`

TatankaConCube commented 5 months ago

how do you collect the log from the receiver side? it looks like some parts of logs is absent

please use the logcat util for collecting android logs, please don't use any filters there

radyhaggag commented 5 months ago

how do you collect the log from the receiver side? it looks like some parts of logs is absent

please use the logcat util for collecting android logs, please don't use any filters there

By logcat grep flutter

01-30 17:28:24.109 1619 1909 D Boost : hostingType=broadcast, hostingName={com.language.taaly.test/io.flutter.plugins.firebase.messaging.FlutterFirebaseMessagingReceiver}, callerPackage=com.google.android.gms, isSystem=true, isBoostNeeded=false. 01-30 17:28:24.110 1619 1909 I ActivityManager: Start proc 31342:com.language.taaly.test/u0a527 for broadcast {com.language.taaly.test/io.flutter.plugins.firebase.messaging.FlutterFirebaseMessagingReceiver} caller=com.google.android.gms 01-30 17:28:26.361 31342 31430 I flutter : The Dart VM service is listening on http://127.0.0.1:37099/zdshKVRz5HM=/ 01-30 17:28:28.450 31342 31409 E flutter : [ERROR:flutter/lib/ui/dart_runtime_hooks.cc(38)] Dart Error: Unhandled exception: 01-30 17:28:28.450 31342 31409 E flutter : NoSuchMethodError: No top-level getter 'onCallIncomingWhenTerminated' declared. 01-30 17:28:28.450 31342 31409 E flutter : Receiver: top-level 01-30 17:28:28.450 31342 31409 E flutter : Tried calling: onCallIncomingWhenTerminated 01-30 17:28:28.450 31342 31409 E flutter : #0 NoSuchMethodError._throwNew (dart:core-patch/errors_patch.dart:191:5) 01-30 17:28:28.450 31342 31409 E flutter : #1 FfiTrampoline___getCallbackFromHandle$Method$FfiNative$Ptr (dart:ffi) 01-30 17:28:28.450 31342 31409 E flutter : #2 _getCallbackFromHandle (dart:ui/natives.dart:95:20) 01-30 17:28:28.450 31342 31409 E flutter : #3 PluginUtilities.getCallbackFromHandle. (dart:ui/plugins.dart:74:23) 01-30 17:28:28.450 31342 31409 E flutter : #4 _LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:543:23) 01-30 17:28:28.450 31342 31409 E flutter : #5 PluginUtilities.getCallbackFromHandle (dart:ui/plugins.dart:73:27) 01-30 17:28:28.450 31342 31409 E flutter : #6 _backgroundEventsCallbackDispatcher. (package:connectycube_flutter_call_kit/src/connectycube_flutter_call_kit.dart:393:40) 01-30 17:28:28.450 31342 31409 E flutter : #7 MethodChannel._handleAsMethodCall (package:flutter/src/services/platform_channel.dart:559:55) 01-30 17:28:28.450 31342 31409 E flutter : #8 MethodChannel.setMethodCallHandler. (package:flutter/src/services/platform_channel.dart:552:34) 01-30 17:28:28.450 31342 31409 E flutter : #9 _DefaultBinaryMessenger.setMessageHandler. (package:flutter/src/services/binding.dart:567:35) 01-30 17:28:28.450 31342 31409 E flutter : #10 _invoke2 (dart:ui/hooks.dart:344:13) 01-30 17:28:28.450 31342 31409 E flutter : #11 _ChannelCallbackRecord.invoke (dart:ui/channel_buffers.dart:45:5) 01-30 17:28:28.450 31342 31409 E flutter : #12 _Channel.push (dart:ui/channel_buffers.dart:135:31) 01-30 17:28:28.450 31342 31409 E flutter : #13 ChannelBuffers.push (dart:ui/channel_buffers.dart:343:17) 01-30 17:28:28.450 31342 31409 E flutter : #14 PlatformDispatcher._dispatchPlatformMessage (dart:ui/platform_dispatcher.dart:722:22) 01-30 17:28:28.450 31342 31409 E flutter : #15 _dispatchPlatformMessage (dart:ui/hooks.dart:257:31) 01-30 17:28:29.078 31342 31436 I flutter : "SilentData": { 01-30 17:28:29.078 31342 31436 I flutter : "call_opponents": "11685972", 01-30 17:28:29.078 31342 31436 I flutter : "call_type": "1", 01-30 17:28:29.078 31342 31436 I flutter : "caller_id": "11686103", 01-30 17:28:29.078 31342 31436 I flutter : "caller_name": "test tutor ", 01-30 17:28:29.078 31342 31436 I flutter : "createdDate": "2024-01-30 15:28:28.000Z", 01-30 17:28:29.078 31342 31436 I flutter : "createdLifeCycle": "Terminated", 01-30 17:28:29.078 31342 31436 I flutter : "createdSource": "Firebase", 01-30 17:28:29.078 31342 31436 I flutter : "expiration": "0", 01-30 17:28:29.078 31342 31436 I flutter : "id": null, 01-30 17:28:29.078 31342 31436 I flutter : "meeting_id": "65b9157fcf1208002f10bf2c", 01-30 17:28:29.078 31342 31436 I flutter : "message": "Incoming Video call", 01-30 17:28:29.078 31342 31436 I flutter : "session_id": "1c28ef8b-0796-421d-8602-d4bd86d57740", 01-30 17:28:29.078 31342 31436 I flutter : "signal_type": "startCall", 01-30 17:28:29.078 31342 31436 I flutter : "user_info": "{\"meeting_id\":\"65b9157fcf1208002f10bf2c\"}" 01-30 17:28:29.078 31342 31436 I flutter : } 01-30 17:28:29.174 31342 31436 I flutter : ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── 01-30 17:28:29.175 31342 31436 I flutter : │ #0 NotificationServiceProvider.mySilentDataHandle (package:taaly_user_mobile_app/core/general/providers/awesome_notification_provider.dart:174:12) 01-30 17:28:29.175 31342 31436 I flutter : │ #1 receiveSilentData (package:awesome_notifications_fcm/src/isolates/silent_push_isolate_main.dart:61:51) 01-30 17:28:29.175 31342 31436 I flutter : ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ 01-30 17:28:29.175 31342 31436 I flutter : │ 👾 mySilentDataHandle() silentData.data {meeting_id: 65b9157fcf1208002f10bf2c, session_id: 1c28ef8b-0796-421d-8602-d4bd86d57740, message: Incoming Video call, signal_type: startCall, caller_name: test tutor , user_info: {"meeting_id":"65b9157fcf1208002f10bf2c"}, caller_id: 11686103, expiration: 0, call_opponents: 11685972, call_type: 1, id: null, createdDate: 2024-01-30 15:28:28.000Z, createdSource: Firebase, createdLifeCycle: Terminated} 01-30 17:28:29.175 31342 31436 I flutter : └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── 01-30 17:28:29.178 31342 31436 I flutter : ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── 01-30 17:28:29.178 31342 31436 I flutter : │ #0 NotificationServiceProvider.mySilentDataHandle (package:taaly_user_mobile_app/core/general/providers/awesome_notification_provider.dart:176:10) 01-30 17:28:29.178 31342 31436 I flutter : │ #1 receiveSilentData (package:awesome_notifications_fcm/src/isolates/silent_push_isolate_main.dart:61:51) 01-30 17:28:29.178 31342 31436 I flutter : ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ 01-30 17:28:29.178 31342 31436 I flutter : │ 👾 mySilentDataHandle() silentData.data 2024-01-30 15:28:28.000Z 01-30 17:28:29.178 31342 31436 I flutter : └───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

TatankaConCube commented 5 months ago

I can't see that the receiver sent any signaling in the latest log. Are you sure the callback onCallRejectedWhenTerminated fires on the receiver side?

radyhaggag commented 5 months ago

I can't see that the receiver sent any signaling in the latest log. Are you sure the callback onCallRejectedWhenTerminated fires on the receiver side?

No, I'm sure from that it's not called never, this is the problem i cannot understand why its not triggered when the call is declined.

TatankaConCube commented 5 months ago

please don't filter by 'flutter', collect full log without any filters I asked before

radyhaggag commented 5 months ago

please don't filter by 'flutter', collect full log without any filters I asked before

01-30 17:57:42.423 1002 6302 I AlarmManager: setExactAndAllowWhileIdle [name: GCM_HB_ALARM type: 2 triggerAtMillis: 2156432] 01-30 17:57:42.427 1002 6302 E GmsTaskScheduler: sendWakeUpEvent called on SchedulerClientBroadcastStrategy 01-30 17:57:42.429 1002 8999 W ChimeraUtils: Module com.google.android.gms.gcm missing resource null(0) 01-30 17:57:42.434 1002 6302 E GmsTaskScheduler: sendWakeUpEvent called on SchedulerClientBroadcastStrategy 01-30 17:57:42.434 1002 6302 I AlarmManager: setExactAndAllowWhileIdle [name: GCM_HB_ALARM type: 2 triggerAtMillis: 2156444] 01-30 17:57:42.439 9960 9960 D FLTFireMsgReceiver: broadcast received for message 01-30 17:57:42.449 9960 10011 W FLTFireMsgService: A background message could not be handled in Dart as no onBackgroundMessage handler has been registered. 01-30 17:57:42.450 9960 9960 D ConnectycubeFCMReceiver: broadcast received for message 01-30 17:57:42.452 9960 9960 D ConnectycubeFCMReceiver: [processInviteCallEvent] 01-30 17:57:42.458 9960 9960 D ConnectycubeFlutterCallKitPlugin: [notifyAboutIncomingCall] sendBroadcast ACTION_CALL_INCOMING 381aa90e-7c9b-4513-8f33-4fc2b7b01197 01-30 17:57:42.459 9960 9960 D NotificationsManager: [showCallNotification] 01-30 17:57:42.460 9960 9960 D NotificationsManager: [showCallNotification] canUseFullScreenIntent: true 01-30 17:57:42.462 9960 9960 D CompatibilityChangeReporter: Compat change id reported: 160794467; UID 10152; state: ENABLED 01-30 17:57:42.463 9960 9960 D NotificationsManager: ringtone: content://settings/system/ringtone 01-30 17:57:42.496 538 538 W NotificationHistory: Attempted to add notif for locked/gone/disabled user 0 01-30 17:57:42.506 1400 1416 W MediaProvider: Failed to fetch original file descriptor 01-30 17:57:42.506 1400 1416 W MediaProvider: java.io.IOException: stat failed: EACCES (Permission denied) 01-30 17:57:42.506 1400 1416 W MediaProvider: at com.android.providers.media.MediaProvider.getFileFromFileDescriptor(MediaProvider.java:5794) 01-30 17:57:42.506 1400 1416 W MediaProvider: at com.android.providers.media.MediaProvider.getOriginalMediaFormatFileDescriptor(MediaProvider.java:5711) 01-30 17:57:42.506 1400 1416 W MediaProvider: at com.android.providers.media.MediaProvider.openTypedAssetFileCommon(MediaProvider.java:7134) 01-30 17:57:42.506 1400 1416 W MediaProvider: at com.android.providers.media.MediaProvider.openTypedAssetFile(MediaProvider.java:7115) 01-30 17:57:42.506 1400 1416 W MediaProvider: at android.content.ContentProvider$Transport.openTypedAssetFile(ContentProvider.java:548) 01-30 17:57:42.506 1400 1416 W MediaProvider: at android.content.ContentProviderNative.onTransact(ContentProviderNative.java:327) 01-30 17:57:42.506 1400 1416 W MediaProvider: at android.os.Binder.execTransactInternal(Binder.java:1179) 01-30 17:57:42.506 1400 1416 W MediaProvider: at android.os.Binder.execTransact(Binder.java:1143) 01-30 17:57:42.506 1400 1416 W MediaProvider: Caused by: android.system.ErrnoException: stat failed: EACCES (Permission denied) 01-30 17:57:42.506 1400 1416 W MediaProvider: at libcore.io.Linux.stat(Native Method) 01-30 17:57:42.506 1400 1416 W MediaProvider: at libcore.io.ForwardingOs.stat(ForwardingOs.java:853) 01-30 17:57:42.506 1400 1416 W MediaProvider: at libcore.io.BlockGuardOs.stat(BlockGuardOs.java:420) 01-30 17:57:42.506 1400 1416 W MediaProvider: at libcore.io.ForwardingOs.stat(ForwardingOs.java:853) 01-30 17:57:42.506 1400 1416 W MediaProvider: at android.app.ActivityThread$AndroidOs.stat(ActivityThread.java:7739) 01-30 17:57:42.506 1400 1416 W MediaProvider: at android.system.Os.stat(Os.java:919) 01-30 17:57:42.506 1400 1416 W MediaProvider: at com.android.providers.media.MediaProvider.getFileFromFileDescriptor(MediaProvider.java:5788) 01-30 17:57:42.506 1400 1416 W MediaProvider: ... 7 more 01-30 17:57:42.507 715 715 D InterruptionStateProvider: No bubble up: not allowed to bubble: 0|com.language.taaly.test|1196413380|null|10152 01-30 17:57:42.509 715 715 W NotifBindPipeline: Row is not set so pipeline will not run. notif = 0|com.language.taaly.test|1196413380|null|10152 01-30 17:57:42.509 715 935 D PeopleSpaceWidgetMgr: Sbn doesn't contain valid PeopleTileKey: null/0/com.language.taaly.test 01-30 17:57:42.509 476 2713 D NuPlayerDriver: NuPlayerDriver(0x7573a929d690) created, clientPid(715) 01-30 17:57:42.512 193 193 I hwservicemanager: getTransport: Cannot find entry android.hardware.media.omx@1.0::IOmx/default in either framework or device VINTF manifest. 01-30 17:57:42.512 476 2713 D MediaPlayerService: OMX service is not available 01-30 17:57:42.515 9960 10011 I ConnectycubeFlutterBgPerformingService: Service has not yet started, messages will be queued. 01-30 17:57:42.519 9960 10059 W FlutterJNI: FlutterJNI.loadLibrary called more than once 01-30 17:57:42.519 9960 10011 I ResourceExtractor: Found extracted resources res_timestamp-579-1706629755508 01-30 17:57:42.522 9960 9960 W FlutterJNI: FlutterJNI.init called more than once 01-30 17:57:42.526 9960 9960 I FlutterConnectycubeBackgroundExecutor: Creating background FlutterEngine instance. 01-30 17:57:42.526 9960 10061 W FlutterJNI: FlutterJNI.prefetchDefaultFontManager called more than once 01-30 17:57:42.527 476 10063 D GenericSource: FileSource remote 01-30 17:57:42.537 9960 9960 D EGL_emulation: eglCreateContext: 0x73cb0116b990: maj 3 min 0 rcv 3 01-30 17:57:42.538 9960 9960 D EGL_emulation: eglCreateContext: 0x73cb0116d850: maj 3 min 0 rcv 3 01-30 17:57:42.540 9960 10066 D HostConnection: createUnique: call 01-30 17:57:42.540 9960 10066 D HostConnection: HostConnection::get() New Host Connection established 0x73cb0116ca10, tid 10066 01-30 17:57:42.547 538 2641 I MediaFocusControl: requestAudioFocus() from uid/pid 10136/715 AA=USAGE_NOTIFICATION_RINGTONE/CONTENT_TYPE_SONIFICATION clientId=android.media.AudioManager@8bb1cc8 callingPack=com.android.systemui req=1 flags=0x0 sdk=31 01-30 17:57:42.548 538 2641 I AudioService.FadeOutManager: unfadeOutUid() uid:10136 01-30 17:57:42.552 9960 10066 D HostConnection: HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_dma_v1 ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2 ANDROID_EMU_YUV_Cache ANDROID_EMU_has_shared_slots_host_memory_allocator ANDROID_EMU_sync_buffer_data ANDROID_EMU_read_color_buffer_dma GL_OES_EGL_image_external_essl3 GL_OES_vertex_array_object GL_KHR_texture_compression_astc_ldr ANDROID_EMU_host_side_tracing ANDROID_EMU_gles_max_version_3_0 01-30 17:57:42.552 9960 10066 D EGL_emulation: eglMakeCurrent: 0x73cb0116d850: ver 3 0 (tinfo 0x73cd1f78f100) (first time) 01-30 17:57:42.562 9960 9960 W MediaButtonReceiver: More than one BroadcastReceiver that handles android.intent.action.MEDIA_BUTTON was found, returning null. 01-30 17:57:42.562 9960 9960 W MediaSessionCompat: Couldn't find a unique registered media button receiver in the given context. 01-30 17:57:42.564 698 698 V MediaPlayerList: onActiveSessionsChanged: number of controllers: 1 01-30 17:57:42.564 9960 9960 D Android: [Awesome Notifications]: Awesome Notifications plugin attached to Android 31 (AwesomeNotificationsPlugin:155) 01-30 17:57:42.564 9960 9960 D Android: [Awesome Notifications]: Awesome Notifications attached to engine for Android 31 (AwesomeNotificationsPlugin:137) 01-30 17:57:42.564 698 698 D MediaPlayerList: onActiveSessionsChanged: controller: com.language.taaly.test 01-30 17:57:42.564 698 698 D MediaPlayerList: Already have a controller for the player: com.language.taaly.test, updating instead 01-30 17:57:42.565 9960 9960 D Android: [Awesome Notifications]: subscribed to receive FCM events (AwesomeFcmEventsReceiver:53) 01-30 17:57:42.565 9960 9960 D Android: [Awesome Notifications]: subscribed to receive FCM events (AwesomeFcmEventsReceiver:73) 01-30 17:57:42.566 9960 9960 D Android: [Awesome Notifications]: subscribed to receive exception events (AwesomeEventsReceiver:45) 01-30 17:57:42.566 698 698 D MediaPlayerList: sendMediaUpdate 01-30 17:57:42.566 698 698 I MediaPlayerList: sendMediaUpdate: Creating a one item queue for a player with no queue 01-30 17:57:42.566 698 698 D MediaPlayerList: sendMediaUpdate state=null 01-30 17:57:42.566 698 698 D AvrcpNativeInterface: sendMediaUpdate: metadata=false playStatus=false queue=false 01-30 17:57:42.567 698 698 D AvrcpTargetJni: sendMediaUpdateNative 01-30 17:57:42.567 698 698 I bt_stack: [INFO:avrcp_service.cc(402)] virtual void bluetooth::avrcp::AvrcpService::SendMediaUpdate(bool, bool, bool) track_changed=0 : play_state=0 : queue=0 01-30 17:57:42.599 715 715 W TouchableRegionManager: onHeadsUpPinnedModeChanged 01-30 17:57:42.601 715 715 D StatusBar: disable<e i a s b h r c s > disable2<q i n > 01-30 17:57:42.606 9960 10070 D Android: [Awesome Notifications]: A new Awesome FCM service has started (AwesomeFcmService:46) 01-30 17:57:42.606 9960 10070 D Android: [Awesome Notifications]: received a new fcm push (id: 0:1706630262627601%704cf2a8cb2f74ad) (AwesomeFcmService:134) 01-30 17:57:42.616 9960 9960 W FlutterWebRTCPlugin: audioFocusChangeListener [Speakerphone(name=Speakerphone)] Speakerphone(name=Speakerphone) 01-30 17:57:42.639 9960 10070 D Android: [Awesome Notifications]: New silent push received (FcmInterpreter:217) 01-30 17:57:42.670 9960 10011 D Android: [Awesome Notifications]: A new silent background service has started (FcmSilentService:23) 01-30 17:57:42.686 715 724 I ndroid.systemu: NativeAlloc concurrent copying GC freed 140059(6026KB) AllocSpace objects, 12(304KB) LOS objects, 49% free, 10MB/20MB, paused 127us,89us total 167.149ms 01-30 17:57:42.719 715 715 W View : requestLayout() improperly called by android.widget.FrameLayout{62c7ef4 V.E...... ......ID 849,0-996,179} during layout: running second layout pass 01-30 17:57:42.719 715 715 W View : requestLayout() improperly called by android.widget.FrameLayout{458961d V.E...... ......ID 849,0-996,231} during layout: running second layout pass 01-30 17:57:42.719 715 715 W View : requestLayout() improperly called by android.widget.FrameLayout{ee2f092 V.E...... ......ID 849,0-996,179} during layout: running second layout pass 01-30 17:57:42.738 9960 9960 I Android: [Awesome Notifications]: Initializing Flutter global instance. (FcmDartBackgroundExec:145) 01-30 17:57:42.738 9960 9960 I Android: [Awesome Notifications]: Creating background FlutterEngine instance. (FcmDartBackgroundExec:158) 01-30 17:57:42.743 9960 9960 D EGL_emulation: eglCreateContext: 0x73cb0116e510: maj 3 min 0 rcv 3 01-30 17:57:42.744 9960 9960 D EGL_emulation: eglCreateContext: 0x73cb0116f710: maj 3 min 0 rcv 3 01-30 17:57:42.745 9960 10077 D HostConnection: createUnique: call 01-30 17:57:42.745 9960 10077 D HostConnection: HostConnection::get() New Host Connection established 0x73cb0116c710, tid 10077 01-30 17:57:42.755 9960 10077 D HostConnection: HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_dma_v1 ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2 ANDROID_EMU_YUV_Cache ANDROID_EMU_has_shared_slots_host_memory_allocator ANDROID_EMU_sync_buffer_data ANDROID_EMU_read_color_buffer_dma GL_OES_EGL_image_external_essl3 GL_OES_vertex_array_object GL_KHR_texture_compression_astc_ldr ANDROID_EMU_host_side_tracing ANDROID_EMU_gles_max_version_3_0 01-30 17:57:42.759 9960 10077 D EGL_emulation: eglMakeCurrent: 0x73cb0116f710: ver 3 0 (tinfo 0x73cd1f78f180) (first time) 01-30 17:57:42.779 9960 9960 W MediaButtonReceiver: More than one BroadcastReceiver that handles android.intent.action.MEDIA_BUTTON was found, returning null. 01-30 17:57:42.779 9960 9960 W MediaSessionCompat: Couldn't find a unique registered media button receiver in the given context. 01-30 17:57:42.786 698 698 V MediaPlayerList: onActiveSessionsChanged: number of controllers: 1 01-30 17:57:42.786 698 698 D MediaPlayerList: onActiveSessionsChanged: controller: com.language.taaly.test 01-30 17:57:42.786 698 698 D MediaPlayerList: Already have a controller for the player: com.language.taaly.test, updating instead 01-30 17:57:42.790 698 698 D MediaPlayerList: sendMediaUpdate 01-30 17:57:42.790 698 698 I MediaPlayerList: sendMediaUpdate: Creating a one item queue for a player with no queue 01-30 17:57:42.790 698 698 D MediaPlayerList: sendMediaUpdate state=null 01-30 17:57:42.790 698 698 D AvrcpNativeInterface: sendMediaUpdate: metadata=false playStatus=false queue=false 01-30 17:57:42.790 698 698 D AvrcpTargetJni: sendMediaUpdateNative 01-30 17:57:42.790 698 698 I bt_stack: [INFO:avrcp_service.cc(402)] virtual void bluetooth::avrcp::AvrcpService::SendMediaUpdate(bool, bool, bool) track_changed=0 : play_state=0 : queue=0 01-30 17:57:42.790 9960 9960 D Android: [Awesome Notifications]: Awesome Notifications plugin attached to Android 31 (AwesomeNotificationsPlugin:155) 01-30 17:57:42.790 9960 9960 D Android: [Awesome Notifications]: Awesome Notifications attached to engine for Android 31 (AwesomeNotificationsPlugin:137) 01-30 17:57:42.791 9960 9960 D Android: [Awesome Notifications]: subscribed to receive FCM events (AwesomeFcmEventsReceiver:53) 01-30 17:57:42.791 9960 9960 D Android: [Awesome Notifications]: subscribed to receive FCM events (AwesomeFcmEventsReceiver:73) 01-30 17:57:42.791 9960 9960 D Android: [Awesome Notifications]: subscribed to receive exception events (AwesomeEventsReceiver:45) 01-30 17:57:42.792 715 910 D EGL_emulation: app_time_stats: avg=42779.23ms min=42779.23ms max=42779.23ms count=1 01-30 17:57:42.797 353 411 D goldfish-address-space: claimShared: Ask to claim region [0x3ea3b4000 0x3eab9d000] 01-30 17:57:42.804 353 411 D goldfish-address-space: claimShared: Ask to claim region [0x3eab9d000 0x3eb386000] 01-30 17:57:42.805 353 411 D goldfish-address-space: claimShared: Ask to claim region [0x3eb386000 0x3ebb6f000] 01-30 17:57:42.812 9960 9960 I Android: [Awesome Notifications]: Executing background FlutterEngine instance for silent FCM. (FcmDartBackgroundExec:181) 01-30 17:57:42.841 9960 9960 W FlutterWebRTCPlugin: audioFocusChangeListener [Speakerphone(name=Speakerphone)] Speakerphone(name=Speakerphone) 01-30 17:57:42.844 715 726 W System : A resource failed to call close. 01-30 17:57:42.844 715 726 W System : A resource failed to call release. 01-30 17:57:42.847 715 726 W System : A resource failed to call close. 01-30 17:57:42.848 715 726 W System : A resource failed to call release. 01-30 17:57:42.853 715 726 W System : A resource failed to call close. 01-30 17:57:42.853 715 726 W System : A resource failed to call release. 01-30 17:57:43.249 476 10058 I GenericSource: start 01-30 17:57:43.261 476 10082 D CCodec : allocate(c2.android.vorbis.decoder) 01-30 17:57:43.279 715 715 D MediaRouter: onRestoreRoute() : route=RouteInfo{ name=Phone, description=null, status=null, category=RouteCategory{ name=System types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null } 01-30 17:57:43.279 715 715 V MediaRouter: Selecting route: RouteInfo{ name=Phone, description=null, status=null, category=RouteCategory{ name=System types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null } 01-30 17:57:43.282 476 10082 I CCodec : setting up 'default' as default (vendor) store 01-30 17:57:43.283 480 798 V C2Store : in init 01-30 17:57:43.283 480 798 V C2Store : loading dll 01-30 17:57:43.286 476 10082 I CCodec : Created component [c2.android.vorbis.decoder] 01-30 17:57:43.286 476 10082 D CCodecConfig: read media type: audio/vorbis 01-30 17:57:43.287 476 10082 D ReflectedParamUpdater: extent() != 1 for single value type: algo.buffers.max-count.values 01-30 17:57:43.287 476 10082 D ReflectedParamUpdater: extent() != 1 for single value type: output.subscribed-indices.values 01-30 17:57:43.287 476 10082 D ReflectedParamUpdater: extent() != 1 for single value type: input.buffers.allocator-ids.values 01-30 17:57:43.287 476 10082 D ReflectedParamUpdater: extent() != 1 for single value type: output.buffers.allocator-ids.values 01-30 17:57:43.287 476 10082 D ReflectedParamUpdater: extent() != 1 for single value type: algo.buffers.allocator-ids.values 01-30 17:57:43.287 476 10082 D ReflectedParamUpdater: extent() != 1 for single value type: output.buffers.pool-ids.values 01-30 17:57:43.287 476 10082 D ReflectedParamUpdater: extent() != 1 for single value type: algo.buffers.pool-ids.values 01-30 17:57:43.293 476 10082 I CCodecConfig: query failed after returning 7 values (BAD_INDEX) 01-30 17:57:43.293 476 10082 D CCodecConfig: c2 config diff is Dict { 01-30 17:57:43.293 476 10082 D CCodecConfig: c2::u32 coded.bitrate.value = 64000 01-30 17:57:43.293 476 10082 D CCodecConfig: c2::u32 input.buffers.max-size.value = 32768 01-30 17:57:43.293 476 10082 D CCodecConfig: c2::u32 input.delay.value = 0 01-30 17:57:43.293 476 10082 D CCodecConfig: string input.media-type.value = "audio/vorbis" 01-30 17:57:43.293 476 10082 D CCodecConfig: string output.media-type.value = "audio/raw" 01-30 17:57:43.293 476 10082 D CCodecConfig: c2::u32 raw.channel-count.value = 1 01-30 17:57:43.293 476 10082 D CCodecConfig: c2::u32 raw.sample-rate.value = 48000 01-30 17:57:43.293 476 10082 D CCodecConfig: } 01-30 17:57:43.294 476 10082 D CCodec : [c2.android.vorbis.decoder] buffers are bound to CCodec for this session 01-30 17:57:43.294 476 10082 D CCodecConfig: no c2 equivalents for durationUs 01-30 17:57:43.294 476 10082 D CCodecConfig: no c2 equivalents for csd-1 01-30 17:57:43.294 476 10082 D CCodecConfig: no c2 equivalents for channel-mask 01-30 17:57:43.294 476 10082 D CCodecConfig: no c2 equivalents for flags 01-30 17:57:43.294 476 10082 D CCodecConfig: c2 config diff is c2::u32 coded.bitrate.value = 112000 01-30 17:57:43.294 476 10082 D CCodecConfig: c2::u32 raw.channel-count.value = 2 01-30 17:57:43.294 476 10082 D CCodecConfig: c2::u32 raw.sample-rate.value = 44100 01-30 17:57:43.294 476 10082 W Codec2Client: query -- param skipped: index = 1107298332. 01-30 17:57:43.294 476 10082 D CCodec : setup formats input: AMessage(what = 0x00000000) = { 01-30 17:57:43.294 476 10082 D CCodec : int32_t bitrate = 112000 01-30 17:57:43.294 476 10082 D CCodec : int32_t channel-count = 2 01-30 17:57:43.294 476 10082 D CCodec : int32_t max-input-size = 32768 01-30 17:57:43.294 476 10082 D CCodec : string mime = "audio/vorbis" 01-30 17:57:43.294 476 10082 D CCodec : int32_t sample-rate = 44100 01-30 17:57:43.294 476 10082 D CCodec : } 01-30 17:57:43.294 476 10082 D CCodec : setup formats output: AMessage(what = 0x00000000) = { 01-30 17:57:43.294 476 10082 D CCodec : int32_t channel-count = 2 01-30 17:57:43.294 476 10082 D CCodec : string mime = "audio/raw" 01-30 17:57:43.294 476 10082 D CCodec : int32_t sample-rate = 44100 01-30 17:57:43.294 476 10082 D CCodec : int32_t channel-mask = 3 01-30 17:57:43.294 476 10082 D CCodec : } 01-30 17:57:43.294 476 10082 I CCodecConfig: query failed after returning 7 values (BAD_INDEX) 01-30 17:57:43.295 476 10082 I MediaCodec: MediaCodec will operate in async mode 01-30 17:57:43.295 476 10081 D MediaCodec: keep callback message for reclaim 01-30 17:57:43.295 476 10082 W Codec2Client: query -- param skipped: index = 1342179345. 01-30 17:57:43.295 476 10082 W Codec2Client: query -- param skipped: index = 2415921170. 01-30 17:57:43.296 480 798 D BufferPoolAccessor2.0: bufferpool2 0x7917d2a24ea8 : 0(0 size) total buffers - 0(0 size) used buffers - 132/135 (recycle/alloc) - 3/134 (fetch/transfer) 01-30 17:57:43.296 480 798 D BufferPoolAccessor2.0: Destruction - bufferpool2 0x7917d2a24ea8 cached: 0/0M, 0/0% in use; allocs: 135, 98% recycled; transfers: 134, 98% unfetched 01-30 17:57:43.297 476 10082 D CCodecBufferChannel: [c2.android.vorbis.decoder#845] Created input block pool with allocatorID 16 => poolID 23 - OK (0) 01-30 17:57:43.302 476 5818 D BufferPoolAccessor2.0: bufferpool2 0x7573c9295c58 : 0(0 size) total buffers - 0(0 size) used buffers - 134/142 (recycle/alloc) - 8/274 (fetch/transfer) 01-30 17:57:43.302 476 5818 D BufferPoolAccessor2.0: Destruction - bufferpool2 0x7573c9295c58 cached: 0/0M, 0/0% in use; allocs: 142, 94% recycled; transfers: 274, 97% unfetched 01-30 17:57:43.302 476 10082 I CCodecBufferChannel: [c2.android.vorbis.decoder#845] Created output block pool with allocatorID 16 => poolID 32 - OK 01-30 17:57:43.302 476 10082 D CCodecBufferChannel: [c2.android.vorbis.decoder#845] Configured output block pool ids 32 => OK 01-30 17:57:43.303 480 10083 D SimpleC2Component: Using output block pool with poolID 32 => got 32 - 0 01-30 17:57:43.355 386 595 D AudioFlinger: Client defaulted notificationFrames to 11224 for frameCount 22448 01-30 17:57:43.359 386 595 D AF::TrackHandle: OpPlayAudio: track:68 usage:6 not muted 01-30 17:57:43.385 476 10080 D AudioTrack: getTimestamp_l(34): device stall time corrected using current time 1747394743689 01-30 17:57:43.407 386 506 D AudioFlinger: mixer(0x7cbc97b9aa70) throttle end: throttle time(128) 01-30 17:57:43.810 9960 9960 I ConnectycubeFlutterBgPerformingService: ConnectycubeFlutterBgPerformingService started! 01-30 17:57:43.811 9960 9960 E FlutterConnectycubeBackgroundExecutor: action_call_incoming background handler has not been registered. 01-30 17:57:43.919 9960 10074 I flutter : "SilentData": { 01-30 17:57:43.919 9960 10074 I flutter : "call_opponents": "11686103", 01-30 17:57:43.919 9960 10074 I flutter : "call_type": "1", 01-30 17:57:43.919 9960 10074 I flutter : "caller_id": "11685972", 01-30 17:57:43.919 9960 10074 I flutter : "caller_name": "test stagging", 01-30 17:57:43.919 9960 10074 I flutter : "createdDate": "2024-01-30 15:57:43.000Z", 01-30 17:57:43.919 9960 10074 I flutter : "createdLifeCycle": "Terminated", 01-30 17:57:43.919 9960 10074 I flutter : "createdSource": "Firebase", 01-30 17:57:43.919 9960 10074 I flutter : "expiration": "0", 01-30 17:57:43.919 9960 10074 I flutter : "id": null, 01-30 17:57:43.919 9960 10074 I flutter : "meeting_id": "65b91c74cf1208002f10c092", 01-30 17:57:43.919 9960 10074 I flutter : "message": "Incoming Video call", 01-30 17:57:43.919 9960 10074 I flutter : "session_id": "381aa90e-7c9b-4513-8f33-4fc2b7b01197", 01-30 17:57:43.919 9960 10074 I flutter : "signal_type": "startCall", 01-30 17:57:43.919 9960 10074 I flutter : "user_info": "{\"meeting_id\":\"65b91c74cf1208002f10c092\"}" 01-30 17:57:43.919 9960 10074 I flutter : } 01-30 17:57:43.942 9960 10074 I flutter : ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── 01-30 17:57:43.942 9960 10074 I flutter : │ #0 NotificationServiceProvider.mySilentDataHandle (package:taaly_user_mobile_app/core/general/providers/awesome_notification_provider.dart:174:12) 01-30 17:57:43.942 9960 10074 I flutter : │ #1 receiveSilentData (package:awesome_notifications_fcm/src/isolates/silent_push_isolate_main.dart:61:51) 01-30 17:57:43.942 9960 10074 I flutter : ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ 01-30 17:57:43.943 9960 10074 I flutter : │ 👾 mySilentDataHandle() silentData.data {meeting_id: 65b91c74cf1208002f10c092, session_id: 381aa90e-7c9b-4513-8f33-4fc2b7b01197, message: Incoming Video call, signal_type: startCall, caller_name: test stagging, user_info: {"meeting_id":"65b91c74cf1208002f10c092"}, caller_id: 11685972, expiration: 0, call_opponents: 11686103, call_type: 1, id: null, createdDate: 2024-01-30 15:57:43.000Z, createdSource: Firebase, createdLifeCycle: Terminated} 01-30 17:57:43.943 9960 10074 I flutter : └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── 01-30 17:57:43.946 9960 10074 I flutter : ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── 01-30 17:57:43.947 9960 10074 I flutter : │ #0 NotificationServiceProvider.mySilentDataHandle (package:taaly_user_mobile_app/core/general/providers/awesome_notification_provider.dart:176:10) 01-30 17:57:43.947 9960 10074 I flutter : │ #1 receiveSilentData (package:awesome_notifications_fcm/src/isolates/silent_push_isolate_main.dart:61:51) 01-30 17:57:43.947 9960 10074 I flutter : ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ 01-30 17:57:43.947 9960 10074 I flutter : │ 👾 mySilentDataHandle() silentData.data 2024-01-30 15:57:43.000Z 01-30 17:57:43.947 9960 10074 I flutter : └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── 01-30 17:57:43.951 9960 9960 I Android: [Awesome Notifications]: All silent data fetched. (FcmDartBackgroundExec:256) 01-30 17:57:43.952 9960 9960 I Android: [Awesome Notifications]: Shutting down background FlutterEngine instance. (FcmDartBackgroundExec:209) 01-30 17:57:43.952 9960 9960 D Android: [Awesome Notifications]: unsubscribed from notification events (AwesomeFcmEventsReceiver:61) 01-30 17:57:43.952 9960 9960 D Android: [Awesome Notifications]: unsubscribed from notification events (AwesomeFcmEventsReceiver:81) 01-30 17:57:43.953 9960 9960 D Android: [Awesome Notifications]: unsubscribed from exception events (AwesomeEventsReceiver:53) 01-30 17:57:43.955 9960 9960 D FlutterWebRTCPlugin: Stopping the audio manager... 01-30 17:57:43.959 9960 9960 D Android: [Awesome Notifications]: Awesome Notifications plugin detached from Android 31 (AwesomeNotificationsPlugin:180) 01-30 17:57:43.979 9960 9960 I Android: [Awesome Notifications]: FlutterEngine instance terminated. (FcmDartBackgroundExec:216) 01-30 17:57:46.505 476 10082 D CCodecBufferChannel: [c2.android.vorbis.decoder#845] buffers after EOS ignored (0 us) 01-30 17:57:46.505 476 10082 D CCodecBufferChannel: [c2.android.vorbis.decoder#845] buffers after EOS ignored (0 us) 01-30 17:57:46.505 476 10082 D CCodecBufferChannel: [c2.android.vorbis.decoder#845] buffers after EOS ignored (0 us) 01-30 17:57:46.760 476 10080 D AudioTrack: stop(34): called with 162432 frames delivered 01-30 17:57:47.082 476 10081 D MediaCodec: keep callback message for reclaim 01-30 17:57:47.082 476 10082 I CCodecConfig: query failed after returning 7 values (BAD_INDEX) 01-30 17:57:47.082 476 10082 W Codec2Client: query -- param skipped: index = 1342179345. 01-30 17:57:47.082 476 10082 W Codec2Client: query -- param skipped: index = 2415921170. 01-30 17:57:47.083 480 10083 D C2SoftVorbisDec: vorbis_dsp_synthesis returned -135; ignored 01-30 17:57:47.084 480 10083 D C2SoftVorbisDec: vorbis_dsp_synthesis returned -135; ignored 01-30 17:57:47.086 476 10080 D AudioTrack: getTimestamp_l(34): device stall time corrected using current time 1751095309205 01-30 17:57:48.297 480 743 D BufferPoolAccessor2.0: evictor expired: 1, evicted: 0 01-30 17:57:48.641 476 10082 D BufferPoolAccessor2.0: bufferpool2 0x7573c9295a08 : 9(294912 size) total buffers - 5(163840 size) used buffers - 259/268 (recycle/alloc) - 9/522 (fetch/transfer) 01-30 17:57:48.642 480 10083 D BufferPoolAccessor2.0: bufferpool2 0x7917d2a24ea8 : 4(131072 size) total buffers - 1(32768 size) used buffers - 256/260 (recycle/alloc) - 4/255 (fetch/transfer) 01-30 17:57:49.297 476 5809 D BufferPoolAccessor2.0: evictor expired: 1, evicted: 0 01-30 17:57:50.491 476 10080 D AudioTrack: stop(34): called with 162432 frames delivered 01-30 17:57:50.574 715 910 D EGL_emulation: app_time_stats: avg=1527.07ms min=39.76ms max=7176.78ms count=5 01-30 17:57:50.753 9960 9960 D EventReceiver: NotificationReceiver onReceive action: action_call_reject 01-30 17:57:50.753 9960 9960 I EventReceiver: NotificationReceiver onReceive Call REJECT, callId: 381aa90e-7c9b-4513-8f33-4fc2b7b01197 01-30 17:57:50.770 476 2713 D NuPlayerDriver: stop(0x7573a929d690) 01-30 17:57:50.771 715 10085 V MediaPlayer: resetDrmState: mDrmInfo=null mDrmProvisioningThread=null mPrepareDrmInProgress=false mActiveDrmScheme=false 01-30 17:57:50.772 715 10085 V MediaPlayer: cleanDrmObj: mDrmObj=null mDrmSessionId=null 01-30 17:57:50.772 476 2713 D NuPlayerDriver: reset(0x7573a929d690) at state 8 01-30 17:57:50.802 9960 10011 W ConnectycubeFlutterBgPerformingService: A background message could not be handled in Dart as no onBackgroundMessage handler has been registered. 01-30 17:57:50.817 476 10087 I hw-BpHwBinder: onLastStrongRef automatically unlinking death recipients 01-30 17:57:50.817 480 480 I hw-BpHwBinder: onLastStrongRef automatically unlinking death recipients 01-30 17:57:50.817 480 480 V C2Store : in ~ComponentModule 01-30 17:57:50.817 480 480 V C2Store : unloading dll 01-30 17:57:50.821 476 10058 D NuPlayerDriver: notifyResetComplete(0x7573a929d690) 01-30 17:57:50.822 476 2713 W AMessage: failed to post message as target looper for handler 0 is gone. 01-30 17:57:50.824 538 1470 I MediaFocusControl: abandonAudioFocus() from uid/pid 10136/715 clientId=android.media.AudioManager@8bb1cc8 01-30 17:57:50.981 715 715 W TouchableRegionManager: onHeadsUpPinnedModeChanged 01-30 17:57:50.998 715 935 D PeopleSpaceWidgetMgr: Sbn doesn't contain valid PeopleTileKey: null/0/com.language.taaly.test 01-30 17:57:51.108 715 910 D EGL_emulation: app_time_stats: avg=1628.09ms min=23.33ms max=7877.86ms count=5 01-30 17:57:51.431 538 620 W libprocessgroup: Failed to open /sys/fs/cgroup/./frozen/cgroup.procs: No such file or directory 01-30 17:57:51.431 538 620 W libprocessgroup: Failed to apply Frozen process profile: No such file or directory 01-30 17:57:51.431 538 620 D ActivityManager: froze 5383 com.google.android.configupdater 01-30 17:57:51.593 715 715 D StatusBar: disable<e i a s b h r c s > disable2<q i n > 01-30 17:57:51.603 715 910 D EGL_emulation: app_time_stats: avg=56.53ms min=31.23ms max=118.87ms count=12 01-30 17:57:56.299 476 5809 D BufferPoolAccessor2.0: bufferpool2 0x7573c9295a08 : 0(0 size) total buffers - 0(0 size) used buffers - 334/343 (recycle/alloc) - 9/672 (fetch/transfer) 01-30 17:57:56.299 476 5809 D BufferPoolAccessor2.0: evictor expired: 1, evicted: 1 01-30 17:57:56.301 480 743 D BufferPoolAccessor2.0: bufferpool2 0x7917d2a24ea8 : 0(0 size) total buffers - 0(0 size) used buffers - 330/334 (recycle/alloc) - 4/330 (fetch/transfer) 01-30 17:57:56.301 480 743 D BufferPoolAccessor2.0: evictor expired: 1, evicted: 1 01-30 17:58:00.011 715 910 D EGL_emulation: app_time_stats: avg=1750.93ms min=11.38ms max=8577.14ms count=5

TatankaConCube commented 5 months ago

could you please try the previous version of the CallKit plugin (2.5.0 without the '^' symbol)? try to call flutter clean, flutter pub get and rebuild your android project

TatankaConCube commented 5 months ago

please use the Gist log for sharing the log as we describe in the template for a ticket, now I need to scroll many times to search your messages (((

radyhaggag commented 5 months ago

please use the Gist log for sharing the log as we describe in the template for a ticket, now I need to scroll many times to search your messages (((

I tried with the 2.5.0 version also the same problem, nothing occur and the logs here: https://gist.github.com/radyhaggag/2e04baca6e90d5c270ed8c6837dd8320

TatankaConCube commented 5 months ago

in log I can see the 01-30 18:16:58.302 5704 5756 W ConnectycubeFlutterBgPerformingService: A background message could not be handled in Dart as no onBackgroundMessage handler has been registered.

are you sure you correctly add the callbacks for listening to required events?

radyhaggag commented 5 months ago

in log I can see the

We use awesome notifications, and all notifications is silent.

what do you mean by this? should i register on the notifications service provider to handle reject call?!!! if this true, what the process or how can that? what the key for handle it and how can i do that.

some details please

TatankaConCube commented 5 months ago

in our sample, we did it here https://github.com/ConnectyCube/connectycube-flutter-samples/blob/master/conf_call_sample/lib/src/managers/callkit_manager.dart#L47

please check where you do it in your app

radyhaggag commented 5 months ago

in our sample, we did it here https://github.com/ConnectyCube/connectycube-flutter-samples/blob/master/conf_call_sample/lib/src/managers/callkit_manager.dart#L47

please check where you do it in your app

I'm Already using this method and registered it on the CallKitManager

TatankaConCube commented 5 months ago

are you sure you init the CallKitManager somewhere in your app?

radyhaggag commented 5 months ago

are you sure you init the CallKitManager somewhere in your app?

Yes, on the previous version before change to 2.5.0 as you said, i tried to register onCallIncomingWhenTerminated and its working fine and i added a logs on it and i saw them on logs, but the onCallAcceptedWhenTerminated, onCallRejectedWhenTerminated, i put a LOGS on them and both not woriking and no logs.

"onCallAcceptedWhenTerminated" we don't need anything for this.

just the problem here "onCallRejectedWhenTerminated", i tried many times and no results.

before it was working when close the app and then open it, sometimes. but now its not working on the production and stagging.

two weeks have passed and no results when search on it, and still trying fiix the issue.

TatankaConCube commented 5 months ago

It sounds strange, it works then it doesn't work... the logic for calling the onCallIncomingWhenTerminated onCallAcceptedWhenTerminated and onCallRejectedWhenTerminated is the same and they all should work or no one work. But on your side, it works randomly((( please check what code do you change and how it affects on functionality

radyhaggag commented 5 months ago

check what code do you change and

From start it doesn't working never, and when i was exploring the issues here i saw some comments from you that you must close the app after close IDE and then open it and close to working.

so that it was working with the same way. without change the code we moved to working on other features on the code for make a production and then when we test we back to the same problem but now its not working never, without change the code.

after many tries i cannot understand why this occur, this strange, many times i review the provided code on the sample and my code nothing wrong all the same.