Skip to content

Files

CallApp

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jul 2, 2021
Jul 2, 2021
Apr 25, 2024
Jul 25, 2023
Jul 2, 2021
Jul 2, 2021
Jul 2, 2021
Jul 2, 2021
Jul 2, 2021
Jul 2, 2021
Jul 2, 2021
Jul 2, 2021
Jul 2, 2021
Jul 2, 2021
Jul 2, 2021
Jul 2, 2021
Jul 2, 2021
Mar 18, 2022
Apr 25, 2024
Apr 25, 2024

CallApp Demo Application

The demo application that uses react-native-voximplant and Voximplant cloud platform for making/receiving audio/video calls.

Getting started

To get started, you'll need to register a free Voximplant developer account.

You'll need the following:

  • Voximplant application
  • two Voximplant users
  • VoxEngine scenario
  • routing setup

Automatic

We've implemented a special template to enable you to quickly use the demo – just install SDK tutorial from our marketplace.

Manual

You can set up it manually using our Getting started page and tutorials

VoxEngine scenario example:

VoxEngine.addEventListener(AppEvents.CallAlerting, (e) => {
const newCall = VoxEngine.callUserDirect(
  e.call, 
  e.destination,
  e.callerid,
  e.displayName,
  null
);
VoxEngine.easyProcess(e.call, newCall, ()=>{}, true);
});

Have a question