Table of Contents
Latest Versions – Video SDK
Note: iOS SDK v2.3.3 is compatible with iOS 12 or above
Latest Versions – UI Kit SDK
Latest Versions – Calling UI Framework SDK
Latest Versions – Face AI SDK
Video SDK – Previous Versions
Web SDK – Previous Versions
- Downloads v2.3.8 – April 6, 2023
- Downloads v2.3.7 – March 30, 2023
- Downloads v2.3.6 – January 31, 2023
- Downloads v2.3.5 – February 10, 2023
- Downloads v2.3.4 – December 14, 2022
- Downloads v2.3.1 – September 30, 2022
- Downloads v2.3 – August 26, 2022
- Download v2.2.6. – July 14, 2022
- Download v2.2.5. – June 30, 2022
- Download v2.2 – June 1, 2022
- Download v2.1.3.4 – March 24, 2022
- Download v2.1.2 – December 24, 2021
- Download v2.0.1 – November 1, 2021
- Download v2.0 – October 1, 2021
Android SDK – Previous Versions
- Download v2.3.10 – May 24, 2023
- Download v2.3.8 – April 6, 2023
- Download v2.3.5 – February 10, 2023
- Download v2.3.2 – November 16, 2022
- Download v2.3.1 – September 30, 2022
- Download v2.3.0 – August 22, 2022
- Download v2.2.1 – August 8, 2022
- Download v2.2 – June 1, 2022
- Download v2.1.3 – February 10, 2022
- Download v2.1.2 – December 24, 2021
- Download v2.0.1 – November 1, 2021
- Download v2.0 – October 1, 2021
iOS SDK – Previous Versions
- Download v2.3.10 – May 24, 2023
- Download v2.3.9 – May 7, 2023
- Download v2.3.8 – April 6, 2023
- Download v2.3.5 – February 10, 2023
- Download v2.3.3 – December 14, 2022
- Download v2.3.2 – November 16, 2022
- Download v2.3.1 – September 30, 2022
- Download v2.3.0 – August 22, 2022
- Download v2.2 – June 1, 2022
- Download v2.1.3 – February 10, 2022
- Download v2.1.2 – December 24, 2021
- Download v2.0.1 – November 1, 2021
- Download v2.0 – October 1, 2021
How to use Video SDKs?
Web SDK – How to use
- Download the file and keep this in the project folder.
- Add the following tag within
<head>...</head>
of your your html file:<script type=”text/javascript” src=”your_path/EnxRtc.js”></script>
- Start using EnxRtc.
Android SDK – How to use
Read details on SDK usage here…
iOS SDK – How to use
- Install CocoaPods as described in CocoaPods Getting Started.
- In Terminal, go to project directory and run
pod init
- To integrate EnxiOS into your Xcode project using CocoaPods, specify pod name EnxRTCiOS.
- After adding all required library in PodFile go to terminal and run
pod Install
- Reopen your project in Xcode using the new .xcworkspace file.
Note:
To use EnableXiOS SDK, add GoogleWebRTC and Socket.IO-Client-Swift(12.0.0) in your project with the following pod names:
'GoogleWebRTC', '~> 1.1.29229’
'Socket.IO-Client-Swift', '~> 15.0.0'
React Native SDK – How to install
The react-native plugin is used to integrate Real Time Communication using EnableX Platform into react-native application. This plugin exposes all required methods and their event listener to communicate with EnableX platform. You need a valid token to carry out a RTC Session.
- Step 1: Open terminal
- Step 2: Go to your react-native project directory
- Step-3: Run Command
npm install enx-rtc-react-native — save
- Step 4: Run command to link
react-native-link enx-rtc-react-native
After installation completed successfully, Import enx-rtc-react-native in your class where you want to access EnableX communication feature. e.g.
import {Enx ,EnxRoom,EnxStream,EnxSubscribeStream,EnxPlayerView} from "enx-rtc-react-native";
Flutter SDK – How to use
Steps to follow:
- Create Flutter sample project
- Add
Enx flutter SDK
as a dependency inpubspec.yaml
file - For iOS run command
flutter build ios --no-codesign