Start a Video Call
This article describes how to build a React Native project that implements the video call function using the Agora React Native SDK.
Understand the tech
The following figure shows the workflow to integrate into your app in order to add Video Call functionality.
As shown in the figure, the workflow for adding Video Call in your project is as follows:
-
Retrieve a token A token is the credential that authenticates a user when your app client joins a channel. In a test or production environment, your app client retrieves tokens from a server in your security infrastructure.
-
Join a channel Call
joinChannel
to create and join a channel. App clients that pass the same channel name join the same channel. -
Publish and subscribe to audio and video in the channel After joining a channel, the app client automatically publishes and subscribes to audio and video in the channel.
For an app client to join a channel, you need the following information:
- The App ID: A randomly generated string provided by Agora for identifying your app. You can get the App ID from Agora Console.
- The user ID: The unique identifier of a user. You need to specify the user ID yourself, and ensure that it is unique in the channel.
- A token: In a test or production environment, your app client retrieves tokens from a server in your security infrastructure. For this page, you use a temporary token with a validity period of 24 hours that you retrieve from Agora Console.
- The channel name: A string that identifies the channel for the video call.
Sample project
Agora provides an open-source sample project API-Example-ReactNative on GitHub that implements interactive live audio and video streaming. You can download it and view the source code.
Prerequisites
Development environment
If your target platform is iOS, your development environment must meet the following requirements:
- React Native 0.59.10 or later
- macOS
- Node 10 or later
- Xcode 9.4 or later
- CocoaPods
- A physical or virtual mobile device running iOS 9.0 or later
If your target platform is Android, your development environment must meet the following requirements:
- React Native 0.59.10 or later
- macOS, Windows, or Linux
- Node 10 or later
- Java Development Kit (JDK) 8 or later
- Android Studio (latest version recommended)
- A physical or virtual mobile device running Android 5.0 or later
For more information, see Setting up the development environment.
Other prerequisites
A valid Agora account..
Create a React Native project
-
Make sure you have set up the development environment based on your operating system and target platform.
-
Run the following command and fill in your project name in ProjectName to create and initialize a new React Native project.
A successful execution of this command generates a simple sample project in the directory that you run the command.
-
Launch your Android or iOS simulator and run your project by executing the following command:
- Run npx react-native start in the root of your project to start Metro.
- Open another terminal in the root of your project and run npx react-native run-android to start the Android app, or run npx react-native run-ios to start the iOS app.
If everything is set up correctly, you should see your new app running in your Android or iOS simulator shortly.
Now that you have your project running successfully, you can start trying to integrate the Agora React Native SDK and modify your project.
Integrate the SDK
This section describes how to integrate the SDK on React Native 0.60.0 or later.
-
Install the latest version of the Agora React Native SDK:
Method one: Install the SDK using npm
Method two: Install the SDK using yarn
Do not link native modules manually, as React Native 0.60.0 and later support automatically linking native modules. For details, see Autolinking. -
If your target platform is iOS, you also need to run the following command to install the SDK:
Ensure that you have already installed CocoaPods before performing this step. See Getting Started with CocoaPods. -
The Agora React Native SDK uses Swift in native modules, and therefore your project must support compiling Swift. Otherwise, you will get errors when building the iOS app.
- Open
ios/ProjectName.xcworkspace
with Xcode. - Click File > New > File, select iOS > Swift File, and then click Next > Create to create a new
File.swift
file.
- Open
Add TypeScript
The sample code in this article is written in TypeScript. If you want to use this sample code directly, you need to add support for TypeScript to your project.
-
Run one of the following commands in the root of your project to add TypeScript dependencies:
Method one: Using npm
Method two: Using yarn
-
Create a
tsconfig.json
file in the root of your project, and copy the following code to the file: -
Create a
jest.config.js
file in the root of your project, and copy the following code to the file: -
Rename
App.js
toApp.tsx
.
Implementation
1. Create the UI
Create the user interface (UI) for the video call in the layout file of your project.
For a video call, we recommend adding the following elements into the UI:
- The start-call button
- The end-call button
- The local video view
- The remote video view
The components/Style.ts
file in the Agora-RN-Quickstart sample project defines the styles of the UI elements. You can create a components
folder for your project, add a Style.ts
file under that folder, and then copy the following code to the file:
2. Import classes
Open the App.tsx
file, and delete all code. Add the following code to the beginning of the App.tsx
file:
3. Add project permissions
Android
Add the following code to the App.tsx
file to set a prompt box for getting permissions to use the microphone and camera on an Android device:
iOS
In Xcode, open the info.plist
file. Add the following contents to add permissions for your device:
Key | Type | Value |
---|---|---|
Privacy - Microphone Usage Description | String | To access the microphone, such as for a call or interactive live streaming. |
Privacy - Camera Usage Description | String | To access the camera, such as for a call or interactive live streaming. |
4. Create an App component
When creating an App component, you need to define your App ID, token, and channel name, which will be used for initializing the RtcEngine
object and joining the channel. Ensure the App ID and channel name are the same as the App ID and channel name used for generating the token.
-
appId
:The App ID of your Agora project. See Get an App ID for details. -
channelName
:The unique channel name for the AgoraRTC session. Users with the same App ID and channel name can join the same channel. -
token
:Pass a token that identifies the role and privilege of the user. The token must be generated using the preceding App ID and channel name. You can set it to one of the following values: -
- A temporary token generated in Console. A temporary token is valid for 24 hours. For details, see Get a Temporary Token.
-
- A token generated at the server. This applies to scenarios with high-security requirements. For details, see Generate a token from Your Server.
5. Initialize RtcEngine
Create and initialize the RtcEngine
object before calling any other Agora APIs.
You can also listen for callback events, such as when the local user joins the channel, when a remote user joins the channel, and when a remote user leaves the channel.
Add the following code after // Other code
in App.tsx
:
6. Join a channel
After initializing the RtcEngine
object, you can call joinChannel
to join a channel.
7. Render UI elements
Call the render()
method in the App component to render the UI elements and handle the button click event.
8. Render the local video view
Configure the video view of the local user. After joining the channel, the user can see themselves. You can also call startPreview
to start the local video preview before joining the channel.
9. Render the remote video view
In a video call, you should be able to see other users. After joining the channel, pass in the uid
of the remote user sending the video, and set the video view of the remote user.
10. Leave the channel
Call leaveChannel
to leave the current channel according to your scenario. For example, when the video call ends, when you need to close the app, or when your app runs in the background.
Run the project
Agora recommends you run this project on a physical mobile device, as some simulators may not support the full features of this project.
To run the Android app on a physical device:
- Enable Developer options on your Android device, and then connect it to your computer using a USB cable.
- Run
npx react-native run-android
in the project root directory.
To run the iOS app on a physical device:
- Open the
ProjectName/ios/ProjectName.xcworkspace
folder with Xcode. - Connect your iOS device to your computer using a USB cable.
- Click the Build and run button in Xcode.
You should see the app installed on your device after a while. You can see both the local and remote video views when you successfully start a video call in the app.