Skip to main content
Version: 2.0.X

VideoCall Component

1. Introduction

The Component discussed in the current document is called VideoCall Component. This is responsible for managing the communication between a user and an agent remotely, through a communication channel. It is primarily geared toward video assistance use cases.

1.1 Minimum requirements

The minimum native version (Android and iOS) of the SDK are as follows:

  • Minimum Android version: 24 - JDK 17
  • Minimum Build Tools version: 8.1.4
  • Minimum Kotlin Android version: 1.9.0
  • Minimum iOS version: 13
  • Minimum Capacitor version: 5

Regarding the architecture of the mobile device:

armeabi-v7, x86, arm64 and x64

1.2 Plugin version

The current plugin version can be checked as follows:

We look for the file package.json in the root of the plugin.

The version is indicated in the KEY/TAG version.


2. Component integration

ℹ️ Before integrating this component it is recommended to read the documentation related to Core Component and follow the instructions indicated in said document.

This section will explain step by step how to integrate the current component into an existing project.

⚠️ For this section, the following values ​​will be considered:

  • <%APPLICATION_PATH%> - Path to the root of the application (example: /folder/example)
  • <%PLUGIN_CORE_PATH%> - Path to the root of the core plugin, which is required (example: /folder/sdk-core)
  • <%PLUGIN_VIDEOCALL_PATH%> - Path to the root of the current plugin (example: /folder/sdk-videocall)

2.1. Plugin installation: Common

The plugin allows execution on Android and iOS platforms. This section explains it. The following steps must be followed:

  • Access APPLICATION_PATH and launch:
npm i @facephi/sdk-core-capacitor
npm i @facephi/sdk-videocall-capacitor
npm run build
npx cap sync
npx ionic capacitor build [android | ios]

After executing the previous commands, the corresponding IDE for each of the platforms will automatically open (XCode for iOS, Android Studio for Android), and all that remains is to compile it (and debug it if necessary) as if it were a standard native project.

2.2 Plugin installation: iOS

2.2.1 Project configuration

For the iOS version, when adding our plugin to the final application, the following points must be taken into account beforehand:

  • Add camera permissions: To use the component, it is necessary to enable the camera permission in the info.plist file of the application (included within the project in the *** folder ios***). You must edit the file with a text editor and add the following key/value pair:
<key>NSCameraUsageDescription</key>
<string>$(PRODUCT_NAME) uses the camera</string>

2.2.2 Update the Podfile

In the project podfile it will be necessary to add the information of the private repository (see section 2.1). To do this, the following lines must be added to the beginning of the file:

platform :ios, '13.0' //MIN VERSION
plugin 'cocoapods-art', :sources => ['cocoa-pro-fphi']
source 'https://cdn.cocoapods.org/'

ℹ️ To know more about the configuration and use of Cocoapods Artifactory, it is necessary to access the following Core Component document.

2.2.3 Possible incidents

If environmental problems occur or the plugin is not updated after making new changes (for example, problems occurred due to the bundle not being generated correctly, or the libraries not being updated to the appropriate versions), it is recommended to run the following sequence instructions after launching the plugin:

  • Open the ios folder of the application in a terminal.
  • Run the following command:
pod deintegrate
  • Remove Podfile.lock
  • Run the following command (or open the project with Xcode and run it):
pod install --repo-update

2.3 Plugin installation: Android

2.3.1 Set Android SDK version

For Android, the minimum SDK version required by our native libraries is 24, so if your app has a minimum SDK defined lower than this, it will need to be modified to avoid a build error. To do this, access the application's build.gradle file (located in the android folder) and modify the following parameter:

buildscript {
ext {
minSdkVersion = 24
}
}

3. Component configuration

The current component contains a series of Typescript methods and interfaces included within the definitions.ts file. In this file you can find the API necessary for communication between the application and the native functionality of the component. The purpose of each of those listed and the other properties that affect the operation of the component are explained below.

Below is the VideoCallConfiguration class, which allows you to configure the VideoCall component:

export interface VideoCallConfiguration {
url?: string;
apiKey?: string;
tenantId?: string;
extensionName?: string;
showDiagnostic?: boolean;
screenSharing?: boolean;
}

Next, all the properties that can be defined in the VideoCallConfiguration object will be discussed:

ℹ️ All configuration can be found in the component's definitions.ts file.

When calling the component, there are a series of parameters that must be included. They will be briefly discussed below.

3.1 screenSharing

type: bool

It is responsible for activating the device's screenshot in the background. It is mainly oriented for recording the onboarding process. If you activate the screenSharing function, for iOS a series of additional steps are required at the native level. Please follow the following documentation:

https://facephi.github.io/sdk-mobile-documentation/docs/ios/Video_Recording_Component

3.2 extensionName(sólo iOS)

type: string

You must make sure to enter the bundle identifier of the Broadcast Upload Extension created here. In our example it is com.facephi.sdk.demo.videoRecording.

3.3 url

type: string

Path to the video socket.

url: url_provided_by_Facephi

3.4 apiKey

type: string

ApiKey required for connection to the video socket.

apiKey: "apiKey_provided_by_Facephi";

3.5 tenantId

type: string

Tenant identifier that refers to the current client, necessary for the connection to the video service.

tenantId: "TenantId_provided_by_Facephi";

3.6 showDiagnostic

type: boolean

Indicates whether you want to show a diagnosis in case of failure.

showDiagnostic: false;

4. Use of the component

Below will be shown how to execute the functionality of the current component.

⚠️ Remember that to launch a previously determined component you will have to initialize the SDK with its respective license, and then start a new operation. For more information consult the Core Component documentation.

Once the component is configured, to launch it the following code must be executed:

/**
* Method that launches the plugin using the authentication with liveness passive mode.
* @returns Promise with a JSON string.
*/
launchVideoCall = async (): Promise<VideoCallResult> => {
console.log('Launching videoCall widget...');

return SdkVideoCall.startVideoCall(this.getVideoCallConfiguration());
}

getVideoCallConfiguration()
{
let config: VideoCallConfiguration = {};
return config;
}

5. Return result

As shown in the above example, the result is returned in the form of a JSON object through Promises, whether it is a successful operation or an error:

return SdkVideoCall.startVideoCall(this.getVideoCallConfiguration());

Regardless of whether the result is correct/wrong, the result will have the following format:

export interface VideoCallResult {
finishStatus: number;
finishStatusDescription?: string;
errorType: string;
errorMessage?: string;
data?: string;
}

ℹ️ The result will be returned through a Promise that contains an object of the class VideoCallResult. Below is more information about these fields.

5.1 finishStatus

  • 1: The operation was successful.
  • 2: An error has occurred, which will be indicated in the errorDiagnostic string and, optionally, an extra information message will be displayed in the errorMessage property.

5.2 finishStatusDescription

  • STATUS_OK: The operation was successful.
  • STATUS_ERROR: An error has occurred, which will be indicated in the errorDiagnostic string and, optionally, an extra information message will be displayed in the errorMessage property.

5.3 errorMessage

Indicates an additional error message if necessary. It is an optional value.

5.4 errorType

Returns the type of error that occurred (if there was one, which is indicated by the finishStatus parameter with the value Error). The values ​​it can have are the following:

  • NoError: No error has occurred. The process can continue.
  • UnknownError: Unhandled error. Possibly caused by a bug in the resource bundle.
  • CameraPermissionDenied: The exception that is thrown when the sdk does not have permission to access the camera.
  • SettingsPermissionDenied: The exception that is thrown when the component does not have permission to access system settings (deprecated).
  • HardwareError: Exception that occurs when there is a hardware problem with the device, usually caused by very few available resources.
  • ExtractionLicenceError: Exception that occurs when there has been a licencing problem on the server.
  • UnexpectedCaptureError: Exception that occurs during the capture of frames by the camera.
  • ControlNotInitialisedError: The component configurator has not been initialised.
  • BadExtractorConfiguration: Problem arose during component configuration.
  • CancelByUser: The exception that is thrown when the user stops the extraction manually.
  • TimeOut: Exception that is thrown when a maximum time elapses without successfully completing the extraction.
  • InitProccessError: Exception that is thrown when the sdk cannot process the captured images.
  • NfcError: The exception that is thrown when the sdk does not have permission to access the nfc.
  • NetworkConnection: The exception that is thrown when there are issues with the means the device uses to connect to the network.
  • TokenError: The exception that is thrown when an invalid token is passed as a parameter.
  • InitSessionError: The exception that is thrown when session cannot be initialised. The normal thing is that it happens because the SdkCore was not called when calling any other component.
  • ComponentControllerError: The exception that is thrown when the component cannot be instantiated.