https://github.com/zoom/videosdk-uitoolkit-android-sample
Use the Zoom Video SDK UI Toolkit in Android
https://github.com/zoom/videosdk-uitoolkit-android-sample
Last synced: about 1 month ago
JSON representation
Use the Zoom Video SDK UI Toolkit in Android
- Host: GitHub
- URL: https://github.com/zoom/videosdk-uitoolkit-android-sample
- Owner: zoom
- License: mit
- Created: 2024-07-01T16:01:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-12T00:57:34.000Z (6 months ago)
- Last Synced: 2025-09-12T03:11:46.676Z (6 months ago)
- Language: Kotlin
- Homepage:
- Size: 105 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# videosdk-uitookit-android-sample
## Overview
This is a simple sample implementation showcasing how to add the [Android UI Toolkit](https://developers.zoom.us/docs/video-sdk/android/ui-toolkit/) to a basic Android project using XML layouts.
## Prerequisites
- Android Studio
- An Android device or emulator
- A [Video SDK JWT](https://developers.zoom.us/docs/video-sdk/auth/)
## Download and run
1. Clone the repo
```sh
git clone https://github.com/zoom/videosdk-uitookit-android-sample
```
2. Open the `UIToolkitSample` directory in Android Studio. Do not open the repository's root directory or Gradle will not sync with the project correctly.
3. Navigate to `Constants.kt` and add valid values for the session context.
- `NAME`: The name of the user who will be joining the session.
- `SESSION_NAME`: The name of the session being joined. See [Sessions](https://developers.zoom.us/docs/video-sdk/android/sessions/) for more information.
- `SDK_KEY`: Your Video SDK Key.
- `SDK_SECRET`: Your Video SDK Secret.
```kotlin
object Constants {
const val NAME = ""
const val SESSION_NAME = ""
const val SDK_KEY = ""
const val SDK_SECRET= ""
}
```
4. Select a target device and click run.
## Need help?
If you're looking for help, try [Developer Support](https://devsupport.zoom.us) or our [Developer Forum](https://devforum.zoom.us). Priority support is also available with [Premier Developer Support](https://explore.zoom.us/docs/en-us/developer-support-plans.html) plans.