Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/team-telnyx/telnyx-video-android
- Owner: team-telnyx
- Created: 2022-03-18T16:58:51.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-15T21:53:36.000Z (4 months ago)
- Last Synced: 2024-09-16T16:07:28.828Z (4 months ago)
- Topics: android, android-library, android-sdk, android-webrtc, kotlin, rooms, sdk, sdk-android, telecomunications, telnyx, video, video-rooms, webrtc
- Homepage:
- Size: 5.33 MB
- Stars: 4
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```