React Native iOS 1.10.10 phone app listing (startCallWithHandle)

Looks like the native phone app shows a call to “testemail@zoom.us”.

Is there a way to customize this? I see its hardcoded in RNZoomView.m line 26.

We would customize what this showed through RNCallKeep handling our native VOIP presentations, but it looks like now after version 1.7.x zoom takes over what this shows. Is there some options to disable zoom from taking over these CallKit options that we handle through another library? or better yet a way for us to set these values our self. Right now it calls it “{{AppName}} Audio” to when with RNCallKeep it would keep it as video “{{AppName}} Video”.

Looks like if disable ENABLE_CALLKIT_VOIP_MEETING from MobileRTCCallKitManager.h

#define ENABLE_CALLKIT_VOIP_MEETING 1

to

#define ENABLE_CALLKIT_VOIP_MEETING 0

I am able to take control of this again.

Is there a way to make this initialization optional in the RN / ZoomVideoSdkProvider so I don’t have to manually edit my node_modules folder to get behavior under my control?