Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/team-telnyx/telnyx-video-android

Telnyx Android Video SDK - Enables real-time video and audio communication with WebRTC and Telnyx
https://github.com/team-telnyx/telnyx-video-android

android android-library android-sdk android-webrtc kotlin rooms sdk sdk-android telecomunications telnyx video video-rooms webrtc

Last synced: 7 days ago
JSON representation

Telnyx Android Video SDK - Enables real-time video and audio communication with WebRTC and Telnyx

Awesome Lists containing this project

README

        

[![](https://jitpack.io/v/team-telnyx/telnyx-meet-android-sdk.svg)](https://jitpack.io/#team-telnyx/telnyx-meet-android-sdk)

# telnyx-video-android

## Adding Telnyx to your Android client application

1. Add Jitpack.io as a repository within your root level build file:
```groovy
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
2. Add the dependency within the app level build file:
```groovy
dependencies {
implementation ('com.github.team-telnyx:telnyx-meet-android-sdk:0.3.1@aar'){transitive=true}
}
```

Note that '0.2.3' should be replaced with the newest version represented by the Jitpack badge

Tag should be replaced with the release version.




Then, import the TelnyxVideo SDK into your application code at the top of the class:

```kotlin
import com.telnyx.video.sdk.*
```

The ‘*’ symbol will import the whole SDK which will then be available for use within that class.




NOTE: Remember to add and handle INTERNET, RECORD_AUDIO and ACCESS_NETWORK_STATE permissions in order to properly use the SDK

```groovy




```