Found it! .
You can hide the url by doing so in the SDK initializeResult ZoomSDK.getInstance().getZoomUIService().hideMeetingInviteUrl(true);
@Override
public void onZoomSDKInitializeResult(int errorCode, int internalErrorCode) {
if (errorCode != ZoomError.ZOOM_ERROR_SUCCESS) {
Toast.makeText(this, "Failed to initialize Zoom SDK. Error: " + errorCode + ", internalErrorCode=" + internalErrorCode, Toast.LENGTH_LONG).show();
} else {
ZoomSDK.getInstance().getZoomUIService().hideMeetingInviteUrl(true);
startMeeting();
}