Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Call Accept is not working at notification widget on Android. [ package version: 1.1.1 ] #418

Open
Jobaer-hassan-orangetoolz opened this issue Sep 1, 2024 · 3 comments
Assignees
Labels
needs more info Needs more info from the issue author.

Comments

@Jobaer-hassan-orangetoolz

Description

For a long time we are using twilio..After implementing new version 1.1.1 , when a incoming call happens , A notification widget arrives and if i click the accept button it doesn't do anything.No logs at terminal.checked all kinds implementation including the test app provided with this package.but got no clue if there is anything wrong in my implementation.

Reproduction Steps ( In my case )

  1. Initialize the Twilio Voice SDK in a React Native app.
  2. Make an incoming call in any state (foreground, background, or killed).
  3. Press the accept button to accept the call.
  4. The call is still ringing but if i press reject call then it rejected.

Expected Behavior

when i click accept it will accept the call.

Actual Behavior

call accept on notification widget is not working at all.

my code implementation

const createCallEvent = ({
callConnect: callOut,
callInvite: callIn,
data,
actionType = 'in',
dispatch,
callRef,
}: callEventActionInterface) => {
let newCallRes, callInviteRef;
if (actionType === 'in') {
callInviteRef = new CustomCallInvite(
{
uuid: callIn?._uuid || '',
customParameters: callIn?._customParameters || {test: ''},
from: callIn?._from || '',
callSid: callIn?._callSid || '',
to: callIn?._to || '',
},
CallInvite.State.Pending,
);
}
newCallRes = new CustomCall({
uuid: actionType === 'in' ? callIn._uuid : callOut._uuid,
customParameters:
actionType === 'in'
? callIn._customParameters
: callOut._customParameters,
from: actionType === 'in' ? callIn._from : data.from,
sid: actionType === 'in' ? callIn._callSid : callOut._sid,
to: actionType === 'in' ? callIn._to : data.to,
isMuted: false,
isOnHold: false,
});
if (actionType === 'in' && callInviteRef) {
callInviteAcceptedV2(callInviteRef);
callInviteRejectedV2(callInviteRef);
cancelledCallInviteV2(callInviteRef);
callInviteNotificationTappedV2(callInviteRef);
}
if (newCallRes) {
callRef.current = newCallRes;
callOnRinging(newCallRes);
callOnConnected(newCallRes, dispatch);
callOnDisconnected(newCallRes);
callOnConnectFailure(newCallRes);
callOnReconnecting(newCallRes);
callOnReconnected(newCallRes);
} else {
callCreateError();
}
};
// version: 1.1.1 (latest)
const callInviteAcceptedV2 = async (call: any) => {
call.on(CustomCallInvite.Event.Accepted, (accepted: any) => {
global.inviteCallHandler(accepted, 'callInviteAccepted');
});
};
const callInviteRejectedV2 = async (call: any) => {
call.on(CustomCallInvite.Event.Rejected, (rejected: any) => {
global.inviteCallHandler(rejected, 'callInviteRejected');
});
};
const cancelledCallInviteV2 = async (call: any) => {
call.on(CustomCallInvite.Event.Cancelled, (cancelled: any) => {
global.inviteCallHandler(cancelled, 'cancelledCallInvite');
});
};
const callInviteNotificationTappedV2 = async (call: any) => {
call.on(CustomCallInvite.Event.NotificationTapped, (data: any) => {
global.inviteCallHandler(
data,
CustomCallInvite.Event.NotificationTapped as any,
);
});
};

Software and Device Information

Please complete the following information.

  • Device: [ Pixel 5]
  • OS: [ Android API Level latest ]
  • React version: [e.g. 18.1.0]
  • React Native version: [ latest]
  • npm or yarn version: [e.g. 8.19.2, 1.22.19]

Expecting a working solution:

Please guide me to the exact reason why this happens and if i am doing something wrong while implementing.

@Jobaer-hassan-orangetoolz Jobaer-hassan-orangetoolz changed the title Call Accept is not working at notification widget at Android. [ package version: 1.1.1 ] Call Accept is not working at notification widget on Android. [ package version: 1.1.1 ] Sep 1, 2024
@mhuynh5757
Copy link
Collaborator

Hello @Jobaer-hassan-orangetoolz thanks for reaching out. Can you post any device logs from adb logcat that could help diagnose this issue?

@mhuynh5757
Copy link
Collaborator

Also, please format your code block using triple backticks so it is easier for us to review your code.

@mhuynh5757 mhuynh5757 self-assigned this Sep 9, 2024
@mhuynh5757 mhuynh5757 added the needs more info Needs more info from the issue author. label Sep 9, 2024
@waheedshabeer
Copy link

I have cat logs @mhuynh5757

2024-10-23 18:49:29.072 26862-26862 OneSignal               com.realtytexas.rthub                D  [main] initWithContext(context: com.realtytexas.rthub.MainApplication@6c17152, appId: null)
2024-10-23 18:49:29.072 26862-26862 OneSignal               com.realtytexas.rthub                D  [main] initWithContext: SDK already initialized
2024-10-23 18:49:29.072 26862-26862 OneSignal               com.realtytexas.rthub                D  [main] Retrieving service interface com.onesignal.notifications.internal.bundle.INotificationBundleProcessor
2024-10-23 18:49:29.073 26862-26862 OneSignal               com.realtytexas.rthub                D  [main] Found constructor: public com.onesignal.notifications.internal.bundle.impl.NotificationBundleProcessor(com.onesignal.notifications.internal.generation.INotificationGenerationWorkManager,com.onesignal.core.internal.time.ITime)
2024-10-23 18:49:29.073 26862-26862 OneSignal               com.realtytexas.rthub                D  [main] Retrieving service interface com.onesignal.notifications.internal.generation.INotificationGenerationWorkManager
2024-10-23 18:49:29.073 26862-26862 OneSignal               com.realtytexas.rthub                D  [main] Already instantiated: com.onesignal.notifications.internal.generation.impl.NotificationGenerationWorkManager@2d96298
2024-10-23 18:49:29.073 26862-26862 OneSignal               com.realtytexas.rthub                D  [main] Retrieving service interface com.onesignal.core.internal.time.ITime
2024-10-23 18:49:29.073 26862-26862 OneSignal               com.realtytexas.rthub                D  [main] Already instantiated: com.onesignal.core.internal.time.impl.Time@eb7cbc9
2024-10-23 18:49:29.074 26862-26862 OneSignal               com.realtytexas.rthub                D  [main] Not a OneSignal formatted Bundle. No 'custom' field in the bundle.
2024-10-23 18:49:29.120 26862-27544 altytexas.rthub         com.realtytexas.rthub                W  Accessing hidden method Landroid/os/WorkSource;->add(I)Z (unsupported,test-api, reflection, allowed)
2024-10-23 18:49:29.120 26862-27544 altytexas.rthub         com.realtytexas.rthub                W  Accessing hidden method Landroid/os/WorkSource;->add(ILjava/lang/String;)Z (unsupported,test-api, reflection, allowed)
2024-10-23 18:49:29.120 26862-27544 altytexas.rthub         com.realtytexas.rthub                W  Accessing hidden method Landroid/os/WorkSource;->get(I)I (unsupported, reflection, allowed)
2024-10-23 18:49:29.120 26862-27544 altytexas.rthub         com.realtytexas.rthub                W  Accessing hidden method Landroid/os/WorkSource;->getName(I)Ljava/lang/String; (unsupported, reflection, allowed)
2024-10-23 18:49:29.136 26862-27548 VoiceFireb...ingService com.realtytexas.rthub                D  onMessageReceived remoteMessage: com.google.firebase.messaging.RemoteMessage@95b97f3
2024-10-23 18:49:29.137 26862-27548 VoiceFireb...ingService com.realtytexas.rthub                D  Bundle data: {twi_account_sid=AC3cc72a186398cbdccd460e7f33823e94, twi_to=client:1eef1218-4cb1-4eba-b96e-023252e9bcee, twi_answer_timeout=600, twi_bridge_token=eyJ6aXAiOiJERUYiLCJjdHkiOiJ0d2lsaW8tZnBhO3Y9MSIsImVuYyI6IkEyNTZHQ00iLCJhbGciOiJkaXIiLCJ0d3IiOiJ1czEiLCJraWQiOiJTQVNfUzNfX19LTVNfdjEifQ..G4RdPpmNeHZmKr-H.bnrCmKHx9g2C-7b_MgOUK1zO6BxCkaYRqNQ_Cg6URrap-CyQJTU0tbflDuTvNDtE1R5kB42Px3KWt3PRDXXkVro0FfNKp8iUqZpgaTDUQbj6MZBrb5ymhaANT-pH744lZlFV8aGHKZ2pl2XHotP2HyKYLf_DJBsaIbwx8EcyZx3_XJMI_PV9CkV4qcvZIzqyTiiazItbwqzd2-MZk104XUIku2eXfCjqNHWlbEiyykcGbPcyIQEN2bSJcNHoHyE1FfFsjM652ILTCKtQl9eu3dzg3r-EBSffNjISMTKcUJ_tRl4WJCpUYNc3GyHVhz0JYAswhA2hVs2KyZD-__4OE3BGMjktg1RzL5ivbqKI5CItjJd-_lReiLlug4dvYtW2_ErHa2YqBxTGfR6HzKetdPDXIFvgJlR7OzSsQnRDmRC1k22xPKcUCLJeQNoMHAD44afloAGQ0hFX9VaIj-GI-HpWTUk4JRxYbZtK5wC-eHoCj6rW_RjMI8NAgHFFUH2ldweexltlL3_5p67VMIlQ1n7uhP-q9EUlw3CtDM7czPVlX50r3noLaEM.vGqfWxYPCLOKmMnD3Ennjw, twi_message_type=twilio.voice.call, twi_call_sid=CA4fb3f56959287cf3af9af3c2974d1b8b, twi_message_id=RU15d0851fe9cef56e8bb1e0dd524994f4, twi_from=+12107140019, twi_stir_status=TN-Validation-Passed-B}
2024-10-23 18:49:29.137 26862-27548 VoiceFireb...ingService com.realtytexas.rthub                D  From: 445807171809
2024-10-23 18:49:29.199 26862-26862 tvo.webrtc.Logging      com.realtytexas.rthub                I  WebRtcAudioManagerExternal: Sample rate is set to 48000 Hz
2024-10-23 18:49:29.199 26862-26862 tvo.webrtc.Logging      com.realtytexas.rthub                I  WebRtcAudioManagerExternal: Sample rate is set to 48000 Hz
2024-10-23 18:49:29.200 26862-26862 tvo.webrtc.Logging      com.realtytexas.rthub                E  JavaAudioDeviceModule: HW NS not supported
2024-10-23 18:49:29.200 26862-26862 tvo.webrtc.Logging      com.realtytexas.rthub                E  JavaAudioDeviceModule: HW AEC not supported
2024-10-23 18:49:29.200 26862-26862 tvo.webrtc.Logging      com.realtytexas.rthub                I  JavaAudioDeviceModule: createAudioDeviceModule
2024-10-23 18:49:29.200 26862-26862 tvo.webrtc.Logging      com.realtytexas.rthub                I  JavaAudioDeviceModule: HW NS will not be used.
2024-10-23 18:49:29.200 26862-26862 tvo.webrtc.Logging      com.realtytexas.rthub                I  JavaAudioDeviceModule: HW AEC will not be used.
2024-10-23 18:49:29.201 26862-26862 tvo.webrtc.Logging      com.realtytexas.rthub                I  WebRtcAudioEffectsExternal: ctor@[name=main, id=2]
2024-10-23 18:49:29.201 26862-26862 tvo.webrtc.Logging      com.realtytexas.rthub                I  WebRtcAudioRecordExternal: ctor@[name=main, id=2]
2024-10-23 18:49:29.201 26862-26862 tvo.webrtc.Logging      com.realtytexas.rthub                I  WebRtcAudioTrackExternal: ctor@[name=main, id=2]
2024-10-23 18:49:29.233 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call create
2024-10-23 18:49:29.233 26862-26862 Twilio                  com.realtytexas.rthub                I  [Core] Creating peer connection signaling thread ...
2024-10-23 18:49:29.234 26862-26862 Twilio                  com.realtytexas.rthub                I  [Core] Creating peer connection worker thread ...
2024-10-23 18:49:29.235 26862-26862 Twilio                  com.realtytexas.rthub                I  [Core] Creating peer connection networking thread ...
2024-10-23 18:49:29.235 26862-26862 Twilio                  com.realtytexas.rthub                I  [Core] Creating media engine ...
2024-10-23 18:49:29.241 26862-26862 Twilio                  com.realtytexas.rthub                I  [Core] Done creating media engine.
2024-10-23 18:49:29.241 26862-26862 Twilio                  com.realtytexas.rthub                I  [Core] Creating peer connection factory ...
2024-10-23 18:49:29.253 26862-26862 Twilio                  com.realtytexas.rthub                I  [Core] Done creating peer connection factory.
2024-10-23 18:49:29.264 26862-26862 Twilio:Acc...okenParser com.realtytexas.rthub                I  [Platform] JWT token HEADER: {"zip":"DEF","cty":"twilio-fpa;v=1","enc":"A256GCM","alg":"dir","twr":"us1","kid":"SAS_S3___KMS_v1"}
2024-10-23 18:49:29.281 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call handleMessage
2024-10-23 18:49:29.283 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] Selected edge - roaming Selected region - gll
2024-10-23 18:49:29.284 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] Initializing SIP stack ...
2024-10-23 18:49:29.290 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] Adding IPv4/IPv6 TLS transports ...
2024-10-23 18:49:29.291 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] Selected edge - roaming Selected region - gll
2024-10-23 18:49:29.293 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] Selected edge - roaming Selected region - gll
2024-10-23 18:49:29.293 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] Initializing DUM ...
2024-10-23 18:49:29.295 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] Starting SIP stack thread ...
2024-10-23 18:49:29.296 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] Starting DUM thread ...
2024-10-23 18:49:29.296 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call getSignalingThread
2024-10-23 18:49:29.296 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call getNetworkingThread
2024-10-23 18:49:29.297 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call getNetworkingThread
2024-10-23 18:49:29.297 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> CallImpl3 signaling_client_<0xb400007ab77e0270>
2024-10-23 18:49:29.297 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> initializeThreadCheckers
2024-10-23 18:49:29.297 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> initialize signaling_client_<0xb400007ab77e0270>
2024-10-23 18:49:29.298 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] <0xb4000079c785a130> Starting the Network Manager
2024-10-23 18:49:29.298 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] <0xb4000079779c14d0> RtcMonitor
2024-10-23 18:49:29.298 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call getFrom
2024-10-23 18:49:29.298 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> listen signaling_client_<0xb400007ab77e0270>
2024-10-23 18:49:29.298 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call getFrom
2024-10-23 18:49:29.299 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call getTo
2024-10-23 18:49:29.299 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call getCallSid
2024-10-23 18:49:29.299 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call getFrom
2024-10-23 18:49:29.299 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call getTo
2024-10-23 18:49:29.299 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call getCallSid
2024-10-23 18:49:29.299 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] ListenerImpl
2024-10-23 18:49:29.299 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] Started listen no-op timer for 599999 ms
2024-10-23 18:49:29.300 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] twilio::voice::AsyncDnsResolver::AsyncDnsResolver(std::weak_ptr<DnsResolverObserver>)
2024-10-23 18:49:29.300 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] AsyncDnsResolver resolving hostname = chunderm.gll.twilio.com
2024-10-23 18:49:29.305 26862-26862 Twilio:CallInviteProxy  com.realtytexas.rthub                D  [Platform] CallInviteProxy::eventListenerProxy::onEvent(...)
2024-10-23 18:49:29.310 26862-26862 Compatibil...geReporter com.realtytexas.rthub                D  Compat change id reported: 247079863; UID 10195; state: ENABLED
2024-10-23 18:49:29.328 26862-26862 Twilio:cla...lang.Class com.realtytexas.rthub                I  [Platform] {"timestamp_ms":1729691369305,"client_name":"1eef1218-4cb1-4eba-b96e-023252e9bcee","call_sid":"CA4fb3f56959287cf3af9af3c2974d1b8b","message_sid":"RU15d0851fe9cef56e8bb1e0dd524994f4","sdk_version":"1.2.0","platform":"android","direction":"INCOMING","selected_region":"gll","logger_type":"default"}
2024-10-23 18:49:29.335 26862-26862 Twilio:CallInviteProxy  com.realtytexas.rthub                D  [Platform] CallInviteProxy::eventListenerProxy::onEvent(...)
2024-10-23 18:49:29.337 26862-26862 Twilio:cla...lang.Class com.realtytexas.rthub                I  [Platform] {"timestamp_ms":1729691369336,"client_name":"1eef1218-4cb1-4eba-b96e-023252e9bcee","call_sid":"CA4fb3f56959287cf3af9af3c2974d1b8b","message_sid":"RU15d0851fe9cef56e8bb1e0dd524994f4","sdk_version":"1.2.0","platform":"android","direction":"INCOMING","selected_region":"gll","logger_type":"default"}
2024-10-23 18:49:29.339 26862-27561 Twilio:EventPublisher   com.realtytexas.rthub                D  [Platform] Start publishing events to : https://eventgw.us1.twilio.com/v4/EndpointEvents
                                                                                                    {"name":"incoming","group":"connection","timestamp":"2024-10-23T13:49:29.330Z","level":"INFO","private":false,"payload_type":"application\/json","publisher":"twilio-voice-android-react-native","publisher_metadata":{"client_address":"FE80::B888:57FF:FEA0:922F","os_name":"android","os_version":"14","device_model":"sdk_gphone64_arm64","device_vendor":"Google","device_type":"sdk_gphone64_arm64","cpu_architecture":"arm64-v8a","app_name":"RT Hub","app_id":"com.realtytexas.rthub","app_version":"1.1","app_build_number":"2","app_min_os_version":23,"app_target_os_version":34},"payload":{"timestamp_ms":1729691369305,"client_name":"1eef1218-4cb1-4eba-b96e-023252e9bcee","call_sid":"CA4fb3f56959287cf3af9af3c2974d1b8b","message_sid":"RU15d0851fe9cef56e8bb1e0dd524994f4","sdk_version":"1.2.0","platform":"android","direction":"INCOMING","selected_region":"gll","logger_type":"default"}}
2024-10-23 18:49:29.346 26862-26862 Twilio:CallInviteProxy  com.realtytexas.rthub                D  [Platform] onCallInvite
2024-10-23 18:49:29.355 26862-27562 Twilio:EventPublisher   com.realtytexas.rthub                D  [Platform] Start publishing events to : https://eventgw.us1.twilio.com/v4/EndpointEvents
                                                                                                    {"name":"listen","group":"connection","timestamp":"2024-10-23T13:49:29.339Z","level":"INFO","private":false,"payload_type":"application\/json","publisher":"twilio-voice-android-react-native","publisher_metadata":{"client_address":"FE80::B888:57FF:FEA0:922F","os_name":"android","os_version":"14","device_model":"sdk_gphone64_arm64","device_vendor":"Google","device_type":"sdk_gphone64_arm64","cpu_architecture":"arm64-v8a","app_name":"RT Hub","app_id":"com.realtytexas.rthub","app_version":"1.1","app_build_number":"2","app_min_os_version":23,"app_target_os_version":34},"payload":{"timestamp_ms":1729691369336,"client_name":"1eef1218-4cb1-4eba-b96e-023252e9bcee","call_sid":"CA4fb3f56959287cf3af9af3c2974d1b8b","message_sid":"RU15d0851fe9cef56e8bb1e0dd524994f4","sdk_version":"1.2.0","platform":"android","direction":"INCOMING","selected_region":"gll","logger_type":"default"}}
2024-10-23 18:49:29.356 26862-26862 VoiceService            com.realtytexas.rthub                D  incomingCall: 5c65b7ff-bf0c-42c7-b1d8-ff9f55fc5d65
2024-10-23 18:49:29.523 26862-26862 JSEventEmitter          com.realtytexas.rthub                D  sendEvent scopeVoice params {"callInvite":{"to":"client:1eef1218-4cb1-4eba-b96e-023252e9bcee","customParameters":{},"from":"+12107140019","callSid":"CA4fb3f56959287cf3af9af3c2974d1b8b","uuid":"5c65b7ff-bf0c-42c7-b1d8-ff9f55fc5d65"},"type":"voiceEventTypeValueIncomingCallInvite"}
2024-10-23 18:49:29.526 26862-26862 Twilio:Con...tyReceiver com.realtytexas.rthub                D  [Platform] Network event received
2024-10-23 18:49:29.528 26862-26862 Twilio:Con...tyReceiver com.realtytexas.rthub                D  [Platform] Ignoring network event, sticky broadcast
2024-10-23 18:49:29.545 26862-27009 TwilioVoic...tiveModule com.realtytexas.rthub                D  Calling addListener: scopeCallInvite
2024-10-23 18:49:29.547 26862-27008 ReactNativeJS           com.realtytexas.rthub                I  'CallInvite', { _events: {},
                                                                                                      _eventsCount: 0,
                                                                                                      _state: 'pending',
                                                                                                      _uuid: '5c65b7ff-bf0c-42c7-b1d8-ff9f55fc5d65',
                                                                                                      _callSid: 'CA4fb3f56959287cf3af9af3c2974d1b8b',
                                                                                                      _customParameters: {},
                                                                                                      _from: '+12107140019',
                                                                                                      _to: 'client:1eef1218-4cb1-4eba-b96e-023252e9bcee',
                                                                                                      _handleNativeCallInviteEvent: [Function],
                                                                                                      _handleMessageReceivedEvent: [Function],
                                                                                                      _handleCallInviteAccepted: [Function],
                                                                                                      _handleCallInviteRejected: [Function],
                                                                                                      _handleCallInviteCancelled: [Function],
                                                                                                      _handleCallInviteNotificationTapped: [Function] }
2024-10-23 18:49:29.656 26862-27562 TrafficStats            com.realtytexas.rthub                D  tagSocket(234) with statsTag=0x3e8, statsUid=-1
2024-10-23 18:49:29.656 26862-27561 Twilio:EventPublisher   com.realtytexas.rthub                D  [Platform] Response: 200 - OK
2024-10-23 18:49:29.665 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] AsyncDnsResolver Resolved ip_addr = 54.169.66.211, error = 0
2024-10-23 18:49:29.665 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] virtual void twilio::voice::SipClient::onResolveResult(twilio::voice::AsyncDnsResolver *, std::string, int)
2024-10-23 18:49:29.665 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] onResolveResult for listen, hostname = sip:chunderm.gll.twilio.com:443;transport=tls, ip_addr = 54.169.66.211
2024-10-23 18:49:29.665 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] New SipCall ..., this=0xb4000079f7a20de0, handle = 1
2024-10-23 18:49:29.665 26862-27549 Twilio                  com.realtytexas.rthub                I  [Core] Setting outbound proxy to: sip:54.169.66.211:443;transport=tls
2024-10-23 18:49:29.840 26862-26906 BufferPoolAccessor2.0   com.realtytexas.rthub                D  bufferpool2 0xb400007a87614e98 : 0(0 size) total buffers - 0(0 size) used buffers - 0/5 (recycle/alloc) - 4/20 (fetch/transfer)
2024-10-23 18:49:29.840 26862-26906 BufferPoolAccessor2.0   com.realtytexas.rthub                D  Destruction - bufferpool2 0xb400007a87614e98 cached: 0/0M, 0/0% in use; allocs: 5, 0% recycled; transfers: 20, 80% unfetched
2024-10-23 18:49:29.841 26862-26906 BufferPoolAccessor2.0   com.realtytexas.rthub                D  bufferpool2 0xb400007a87619d38 : 0(0 size) total buffers - 0(0 size) used buffers - 0/5 (recycle/alloc) - 4/24 (fetch/transfer)
2024-10-23 18:49:29.841 26862-26906 BufferPoolAccessor2.0   com.realtytexas.rthub                D  Destruction - bufferpool2 0xb400007a87619d38 cached: 0/0M, 0/0% in use; allocs: 5, 0% recycled; transfers: 24, 83% unfetched
2024-10-23 18:49:29.841 26862-26906 BufferPoolAccessor2.0   com.realtytexas.rthub                D  bufferpool2 0xb400007a87605978 : 0(0 size) total buffers - 0(0 size) used buffers - 0/5 (recycle/alloc) - 3/6 (fetch/transfer)
2024-10-23 18:49:29.841 26862-26906 BufferPoolAccessor2.0   com.realtytexas.rthub                D  Destruction - bufferpool2 0xb400007a87605978 cached: 0/0M, 0/0% in use; allocs: 5, 0% recycled; transfers: 6, 50% unfetched
2024-10-23 18:49:29.841 26862-26906 BufferPoolAccessor2.0   com.realtytexas.rthub                D  bufferpool2 0xb400007a876140b8 : 0(0 size) total buffers - 0(0 size) used buffers - 0/5 (recycle/alloc) - 4/24 (fetch/transfer)
2024-10-23 18:49:29.841 26862-26906 BufferPoolAccessor2.0   com.realtytexas.rthub                D  Destruction - bufferpool2 0xb400007a876140b8 cached: 0/0M, 0/0% in use; allocs: 5, 0% recycled; transfers: 24, 83% unfetched
2024-10-23 18:49:30.764 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] mapToSipCall handle id is 1
2024-10-23 18:49:30.767 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] casting handle id 1 to SipCall
2024-10-23 18:49:30.768 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] onNewSession:
                                                                                                    SIP/2.0 180 Ringing
                                                                                                    Via: SIP/2.0/TLS 10.0.2.x;received=36.50.12.56;branch=z9hG4bK-524287-1---cfd63c728596c44b;rport=51577
                                                                                                    Record-Route: <sip:172.19.67.x:10193;r2=on;transport=udp;ftag=25987ccc;lr>
                                                                                                    Record-Route: <sip:54.169.66.211:443;r2=on;transport=tls;ftag=25987ccc;lr>
                                                                                                    Contact: <sip:172.19.65.x:10193>
                                                                                                    To: <sip:chunderm.gll.twilio.com:443;transport=tls>;tag=91039483_c3356d0b_d98d1376-4aae-40a6-a3db-b113b3ac49ae
                                                                                                    From: <sip:[email protected]>;tag=25987ccc
                                                                                                    Call-ID: 1u8MSzw_iLx74IhbyPPSVA..
                                                                                                    CSeq: 1 INVITE
                                                                                                    Server: Twilio
                                                                                                    X-Twilio-CallSid: CA4fb3f56959287cf3af9af3c2974d1b8b
                                                                                                    X-Twilio-EdgeHost: chunderm0.sg1.twilio.com
                                                                                                    X-Twilio-EdgeRegion: sg1
                                                                                                    X-Twilio-Zone: ASIAPAC_SINGAPORE
                                                                                                    Content-Length: 0
2024-10-23 18:49:30.768 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] onNewCall
2024-10-23 18:49:30.769 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] mapToSipCall handle id is 1
2024-10-23 18:49:30.769 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] casting handle id 1 to SipCall
2024-10-23 18:49:30.770 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] onProvisional:
                                                                                                    SIP/2.0 180 Ringing
                                                                                                    Via: SIP/2.0/TLS 10.0.2.x;received=36.50.12.56;branch=z9hG4bK-524287-1---cfd63c728596c44b;rport=51577
                                                                                                    Record-Route: <sip:172.19.67.x:10193;r2=on;transport=udp;ftag=25987ccc;lr>
                                                                                                    Record-Route: <sip:54.169.66.211:443;r2=on;transport=tls;ftag=25987ccc;lr>
                                                                                                    Contact: <sip:172.19.65.x:10193>
                                                                                                    To: <sip:chunderm.gll.twilio.com:443;transport=tls>;tag=91039483_c3356d0b_d98d1376-4aae-40a6-a3db-b113b3ac49ae
                                                                                                    From: <sip:[email protected]>;tag=25987ccc
                                                                                                    Call-ID: 1u8MSzw_iLx74IhbyPPSVA..
                                                                                                    CSeq: 1 INVITE
                                                                                                    Server: Twilio
                                                                                                    X-Twilio-CallSid: CA4fb3f56959287cf3af9af3c2974d1b8b
                                                                                                    X-Twilio-EdgeHost: chunderm0.sg1.twilio.com
                                                                                                    X-Twilio-EdgeRegion: sg1
                                                                                                    X-Twilio-Zone: ASIAPAC_SINGAPORE
                                                                                                    Content-Length: 0
2024-10-23 18:49:30.770 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] onRinging
2024-10-23 18:49:30.771 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] isInvalidated
2024-10-23 18:49:30.771 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] isInvalidated
2024-10-23 18:49:30.791 26862-26862 Twilio:CallInviteProxy  com.realtytexas.rthub                D  [Platform] CallInviteProxy::eventListenerProxy::onEvent(...)
2024-10-23 18:49:30.808 26862-27562 Twilio:EventPublisher   com.realtytexas.rthub                D  [Platform] Response: 200 - OK
2024-10-23 18:49:30.841 26862-26862 Twilio:cla...lang.Class com.realtytexas.rthub                I  [Platform] {"timestamp_ms":1729691370821,"client_name":"1eef1218-4cb1-4eba-b96e-023252e9bcee","call_sid":"CA4fb3f56959287cf3af9af3c2974d1b8b","message_sid":"RU15d0851fe9cef56e8bb1e0dd524994f4","sdk_version":"1.2.0","platform":"android","direction":"INCOMING","selected_region":"gll","logger_type":"default"}
2024-10-23 18:49:30.851 26862-27584 Twilio:EventPublisher   com.realtytexas.rthub                D  [Platform] Start publishing events to : https://eventgw.us1.twilio.com/v4/EndpointEvents
                                                                                                    {"name":"listening","group":"connection","timestamp":"2024-10-23T13:49:30.842Z","level":"INFO","private":false,"payload_type":"application\/json","publisher":"twilio-voice-android-react-native","publisher_metadata":{"client_address":"FE80::B888:57FF:FEA0:922F","os_name":"android","os_version":"14","device_model":"sdk_gphone64_arm64","device_vendor":"Google","device_type":"sdk_gphone64_arm64","cpu_architecture":"arm64-v8a","app_name":"RT Hub","app_id":"com.realtytexas.rthub","app_version":"1.1","app_build_number":"2","app_min_os_version":23,"app_target_os_version":34},"payload":{"timestamp_ms":1729691370821,"client_name":"1eef1218-4cb1-4eba-b96e-023252e9bcee","call_sid":"CA4fb3f56959287cf3af9af3c2974d1b8b","message_sid":"RU15d0851fe9cef56e8bb1e0dd524994f4","sdk_version":"1.2.0","platform":"android","direction":"INCOMING","selected_region":"gll","logger_type":"default"}}
2024-10-23 18:49:31.216 26862-27584 Twilio:EventPublisher   com.realtytexas.rthub                D  [Platform] Response: 200 - OK
2024-10-23 18:49:33.081 26862-26862 OneSignal               com.realtytexas.rthub                D  [main] ApplicationService.onActivityPaused(1,APP_OPEN): com.realtytexas.rthub.MainActivity@9b140c1
2024-10-23 18:49:33.138 26862-26862 OneSignal               com.realtytexas.rthub                D  [main] ApplicationService.onActivityResumed(1,APP_OPEN): com.realtytexas.rthub.MainActivity@9b140c1
2024-10-23 18:49:33.177 26862-27587 TrafficStats            com.realtytexas.rthub                D  tagSocket(98) with statsTag=0xffffffff, statsUid=-1
2024-10-23 18:49:33.315 26862-26872 altytexas.rthub         com.realtytexas.rthub                I  Background young concurrent copying GC freed 286659(12MB) AllocSpace objects, 18(740KB) LOS objects, 44% free, 16MB/30MB, paused 1.753ms,14us total 103.713ms
2024-10-23 18:49:33.329 26862-26874 System                  com.realtytexas.rthub                W  A resource failed to call close. 
2024-10-23 18:49:33.493 26862-26862 OneSignal               com.realtytexas.rthub                D  [main] ApplicationService.onActivityPaused(1,APP_OPEN): com.realtytexas.rthub.MainActivity@9b140c1
2024-10-23 18:49:33.498 26862-26862 OneSignal               com.realtytexas.rthub                D  [main] ApplicationService.onActivityResumed(1,APP_OPEN): com.realtytexas.rthub.MainActivity@9b140c1
2024-10-23 18:49:33.512 26862-27589 TrafficStats            com.realtytexas.rthub                D  tagSocket(98) with statsTag=0xffffffff, statsUid=-1
2024-10-23 18:49:34.846 26862-26905 BufferPoolAccessor2.0   com.realtytexas.rthub                D  evictor expired: 4, evicted: 0
2024-10-23 18:49:38.092 26862-26862 VoiceService            com.realtytexas.rthub                D  rejectCall: 5c65b7ff-bf0c-42c7-b1d8-ff9f55fc5d65
2024-10-23 18:49:38.092 26862-26862 VoiceService            com.realtytexas.rthub                D  removeNotification
2024-10-23 18:49:38.105 26862-26862 Twilio:Acc...okenParser com.realtytexas.rthub                I  [Platform] JWT token HEADER: {"zip":"DEF","cty":"twilio-fpa;v=1","enc":"A256GCM","alg":"dir","twr":"us1","kid":"SAS_S3___KMS_v1"}
2024-10-23 18:49:38.112 26862-26862 Twilio:Call             com.realtytexas.rthub                D  [Platform] Call::reject(): {com.twilio.voice.Call@dc82ba3}
2024-10-23 18:49:38.118 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call reject
2024-10-23 18:49:38.118 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> reject
2024-10-23 18:49:38.118 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> operator(): 545
2024-10-23 18:49:38.118 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> operator(): 547 Disconnecting
2024-10-23 18:49:38.118 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> disconnectListener
2024-10-23 18:49:38.118 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] SipClient::disconnect
2024-10-23 18:49:38.118 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] invalidate
2024-10-23 18:49:38.119 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] twilio::voice::AsyncDnsResolver::AsyncDnsResolver(std::weak_ptr<DnsResolverObserver>)
2024-10-23 18:49:38.119 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] AsyncDnsResolver resolving hostname = chunderm.gll.twilio.com
2024-10-23 18:49:38.120 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] virtual void twilio::voice::SipCall::DisconnectCommand::executeCommand()
2024-10-23 18:49:38.125 26862-26862 Twilio:CallInviteProxy  com.realtytexas.rthub                D  [Platform] CallInviteProxy::release
2024-10-23 18:49:38.126 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] ~CallInviteImpl
2024-10-23 18:49:38.127 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] ~CallerInfoImpl
2024-10-23 18:49:38.129 26862-26862 JSEventEmitter          com.realtytexas.rthub                D  sendEvent scopeCallInvite params {"callInvite":{"to":"client:1eef1218-4cb1-4eba-b96e-023252e9bcee","customParameters":{},"from":"+12107140019","callSid":"CA4fb3f56959287cf3af9af3c2974d1b8b","uuid":"5c65b7ff-bf0c-42c7-b1d8-ff9f55fc5d65"},"callSid":"CA4fb3f56959287cf3af9af3c2974d1b8b","type":"callInviteEventTypeValueCallInviteRejected"}
2024-10-23 18:49:38.131 26862-26862 Twilio:Con...tyReceiver com.realtytexas.rthub                D  [Platform] Network event received
2024-10-23 18:49:38.138 26862-26862 Twilio:Con...tyReceiver com.realtytexas.rthub                D  [Platform] Ignoring network event, sticky broadcast
2024-10-23 18:49:38.140 26862-26862 Twilio:CallInviteProxy  com.realtytexas.rthub                D  [Platform] CallInviteProxy::eventListenerProxy::onEvent(...)
2024-10-23 18:49:38.144 26862-26862 Twilio:cla...lang.Class com.realtytexas.rthub                I  [Platform] {"timestamp_ms":1729691378141,"client_name":"1eef1218-4cb1-4eba-b96e-023252e9bcee","call_sid":"CA4fb3f56959287cf3af9af3c2974d1b8b","message_sid":"RU15d0851fe9cef56e8bb1e0dd524994f4","sdk_version":"1.2.0","platform":"android","direction":"INCOMING","selected_region":"gll","logger_type":"default"}
2024-10-23 18:49:38.155 26862-27593 Twilio:EventPublisher   com.realtytexas.rthub                D  [Platform] Start publishing events to : https://eventgw.us1.twilio.com/v4/EndpointEvents
                                                                                                    {"name":"rejected-by-local","group":"connection","timestamp":"2024-10-23T13:49:38.145Z","level":"INFO","private":false,"payload_type":"application\/json","publisher":"twilio-voice-android-react-native","publisher_metadata":{"client_address":"FE80::B888:57FF:FEA0:922F","os_name":"android","os_version":"14","device_model":"sdk_gphone64_arm64","device_vendor":"Google","device_type":"sdk_gphone64_arm64","cpu_architecture":"arm64-v8a","app_name":"RT Hub","app_id":"com.realtytexas.rthub","app_version":"1.1","app_build_number":"2","app_min_os_version":23,"app_target_os_version":34},"payload":{"timestamp_ms":1729691378141,"client_name":"1eef1218-4cb1-4eba-b96e-023252e9bcee","call_sid":"CA4fb3f56959287cf3af9af3c2974d1b8b","message_sid":"RU15d0851fe9cef56e8bb1e0dd524994f4","sdk_version":"1.2.0","platform":"android","direction":"INCOMING","selected_region":"gll","logger_type":"default"}}
2024-10-23 18:49:38.156 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] AsyncDnsResolver Resolved ip_addr = 54.169.66.211, error = 0
2024-10-23 18:49:38.156 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] virtual void twilio::voice::SipClient::onResolveResult(twilio::voice::AsyncDnsResolver *, std::string, int)
2024-10-23 18:49:38.156 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] onResolveResult for connect, hostname = sip:chunderm.gll.twilio.com:443;transport=tls, ip_addr = 54.169.66.211
2024-10-23 18:49:38.156 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] New SipCall ..., this=0xb4000079f79bcaf0, handle = 4
2024-10-23 18:49:38.156 26862-27549 Twilio                  com.realtytexas.rthub                I  [Core] Setting outbound proxy to: sip:54.169.66.211:443;transport=tls
2024-10-23 18:49:38.336 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] mapToSipCall handle id is 1
2024-10-23 18:49:38.336 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] casting handle id 1 to SipCall
2024-10-23 18:49:38.336 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] onTerminated: reason 5, this=0xb4000079f7a20de0
2024-10-23 18:49:38.336 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] onTerminated
2024-10-23 18:49:38.337 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] ~SipCall(): 0xb4000079f7a20de0
2024-10-23 18:49:38.650 26862-27593 Twilio:EventPublisher   com.realtytexas.rthub                D  [Platform] Response: 200 - OK
2024-10-23 18:49:38.703 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] mapToSipCall handle id is 4
2024-10-23 18:49:38.703 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] casting handle id 4 to SipCall
2024-10-23 18:49:38.703 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] virtual void twilio::voice::SipCall::onFailure(resip::ClientInviteSessionHandle, const resip::SipMessage &)
2024-10-23 18:49:38.703 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] Received incoming SIP message from infra:
                                                                                                     SIP/2.0 600 Call Rejected
                                                                                                    Via: SIP/2.0/TLS 10.0.2.x;received=36.50.12.56;branch=z9hG4bK-524287-1---78dbcdad162217c5;rport=51577
                                                                                                    Contact: <sip:172.19.75.x:10193>
                                                                                                    To: <sip:chunderm.gll.twilio.com:443;transport=tls>;tag=78070828_c3356d0b_10e1317d-050a-4c71-b57c-589cb9839bcd
                                                                                                    From: <sip:[email protected]>;tag=5b2aa80c
                                                                                                    Call-ID: e5oJoSDvMchrV4H4CyPcOw..
                                                                                                    CSeq: 1 INVITE
                                                                                                    Server: Twilio
                                                                                                    X-Twilio-CallSid: CA4fb3f56959287cf3af9af3c2974d1b8b
                                                                                                    X-Twilio-EdgeHost: chunderm0.sg1.twilio.com
                                                                                                    X-Twilio-EdgeRegion: sg1
                                                                                                    X-Twilio-Zone: ASIAPAC_SINGAPORE
                                                                                                    Content-Length: 0
2024-10-23 18:49:38.703 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> onFailure
2024-10-23 18:49:38.703 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] mapToSipCall handle id is 4
2024-10-23 18:49:38.703 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] casting handle id 4 to SipCall
2024-10-23 18:49:38.703 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] onTerminated: reason 0, this=0xb4000079f79bcaf0
2024-10-23 18:49:38.703 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] Received incoming SIP message from infra:
                                                                                                     SIP/2.0 600 Call Rejected
                                                                                                    Via: SIP/2.0/TLS 10.0.2.x;received=36.50.12.56;branch=z9hG4bK-524287-1---78dbcdad162217c5;rport=51577
                                                                                                    Contact: <sip:172.19.75.x:10193>
                                                                                                    To: <sip:chunderm.gll.twilio.com:443;transport=tls>;tag=78070828_c3356d0b_10e1317d-050a-4c71-b57c-589cb9839bcd
                                                                                                    From: <sip:[email protected]>;tag=5b2aa80c
                                                                                                    Call-ID: e5oJoSDvMchrV4H4CyPcOw..
                                                                                                    CSeq: 1 INVITE
                                                                                                    Server: Twilio
                                                                                                    X-Twilio-CallSid: CA4fb3f56959287cf3af9af3c2974d1b8b
                                                                                                    X-Twilio-EdgeHost: chunderm0.sg1.twilio.com
                                                                                                    X-Twilio-EdgeRegion: sg1
                                                                                                    X-Twilio-Zone: ASIAPAC_SINGAPORE
                                                                                                    Content-Length: 0
2024-10-23 18:49:38.703 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> onTerminated: signaling_client_(0xb400007ab77e0270)
2024-10-23 18:49:38.703 26862-27556 Twilio                  com.realtytexas.rthub                D  [Core] ~SipCall(): 0xb4000079f79bcaf0
2024-10-23 18:49:38.705 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] Suppressing Busy Everywhere Error for rejected call.
2024-10-23 18:49:38.705 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> stopDependents
2024-10-23 18:49:38.705 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] Stopping the Network Manager...
2024-10-23 18:49:38.706 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] <0xb4000079c785a130> ~NetworkMonitor
2024-10-23 18:49:38.706 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] <0xb4000079779c14d0> ~RtcMonitor
2024-10-23 18:49:38.706 26862-27554 Twilio                  com.realtytexas.rthub                D  [Core] <0x0> operator() state: 0
2024-10-23 18:49:38.706 26862-27554 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> Invoking onConnectFailure.
2024-10-23 18:49:38.707 26862-26862 Twilio:Call             com.realtytexas.rthub                D  [Platform] Call::callListenerProxy::onConnectFailure(): {com.twilio.voice.Call@dc82ba3}
2024-10-23 18:49:38.708 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> willDestroy: signaling_client_(0xb400007ab77e0270)
2024-10-23 18:49:38.708 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> Waiting to synchronize signaling thread
2024-10-23 18:49:38.709 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> synchronization is done for signaling thread
2024-10-23 18:49:38.709 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] reset signaling client
2024-10-23 18:49:38.709 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] ~SignalingClient
2024-10-23 18:49:38.709 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] Shutting down DUM thread ...
2024-10-23 18:49:39.704 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] Shutting down SIP stack thread ...
2024-10-23 18:49:39.705 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] Deleting previously cached listen set ids
2024-10-23 18:49:39.705 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] virtual twilio::voice::AsyncDnsResolver::~AsyncDnsResolver()
2024-10-23 18:49:39.705 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] virtual twilio::voice::AsyncDnsResolver::~AsyncDnsResolver()
2024-10-23 18:49:39.709 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> Completing pending and in-progress signaling thread calls.
2024-10-23 18:49:39.709 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] API Call getWorkerThread
2024-10-23 18:49:39.709 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] Synchronize the worker thread
2024-10-23 18:49:39.709 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] <0xb400007a27c9d590> ~CallImpl
2024-10-23 18:49:39.710 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] ~ListenerImpl
2024-10-23 18:49:39.710 26862-27549 Twilio                  com.realtytexas.rthub                D  [Core] invalidate
2024-10-23 18:49:39.710 26862-26862 Twilio                  com.realtytexas.rthub                I  [Core] ~AudioMediaFactoryImpl
2024-10-23 18:49:39.713 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] NotifierQueueImpl::~NotifierQueueImpl
2024-10-23 18:49:39.713 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] NotifierQueueImpl::~NotifierQueueImpl: willDestroy() was not called, calling it now.
2024-10-23 18:49:39.713 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] NotifierQueueImpl::willDestroy
2024-10-23 18:49:39.713 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] NotifierQueueImpl::willDestroy: Completed.
2024-10-23 18:49:39.713 26862-26862 Twilio                  com.realtytexas.rthub                D  [Core] NotifierQueueImpl::~NotifierQueueImpl: Completed.
2024-10-23 18:49:39.715 26862-26862 Twilio:Call             com.realtytexas.rthub                D  [Platform] Call::release(): {com.twilio.voice.Call@dc82ba3}
2024-10-23 18:49:39.717 26862-26862 Twilio:Call             com.realtytexas.rthub                D  [Platform] Call::release(): {com.twilio.voice.Call@dc82ba3}
2024-10-23 18:49:39.717 26862-26862 Choreographer           com.realtytexas.rthub                I  Skipped 60 frames!  The application may be doing too much work on its main thread.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs more info Needs more info from the issue author.
Projects
None yet
Development

No branches or pull requests

3 participants