Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.zoomvideo:Android-RTC-Stack:'
}
dependencies {
implementation("com.github.zoomvideo:Android-RTC-Stack:")
}
<dependency>
<groupId>com.github.zoomvideo</groupId>
<artifactId>Android-RTC-Stack</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.zoomvideo" % "Android-RTC-Stack" % ""
:dependencies [[com.github.zoomvideo/Android-RTC-Stack ""]]
We are pleased to inform you that starting from v5.4.3.603, the Zoom SDK packages are moving to the Zoom App Marketplace. The packages are now available in the same location as your SDK Key & Secret. This change aims to provide you with a unified and seamless experience so that you can access the required SDK resources in one place.
If you have not used Zoom SDK before, please follow the steps in https://marketplace.zoom.us/docs/guides/build/sdk-app to create an SDK app on the Marketplace.
If you already have an SDK app created, login to the Zoom App Marketplace using your developer account, click the Manage button on the top-right corner and locate your SDK app. <img src="https://camo.githubusercontent.com/e1098d6fb90e936267717461ac4cd4a1b19a04656f71fcfeedac9f73a1a38f9e/68747470733a2f2f73332d75732d776573742d312e616d617a6f6e6177732e636f6d2f73646b2e7a6f6f6d2e75732f6d6b742d30312e706e67" style="margin:1vh 1vw;"/>
Click on your SDK app, you can find the desired SDK packages from the Download tab <img src="https://camo.githubusercontent.com/11f73667b94414f4fd840513124b198d5c11a8677d9df4d84ab401c15831e32b/68747470733a2f2f73332d75732d776573742d312e616d617a6f6e6177732e636f6d2f73646b2e7a6f6f6d2e75732f6d6b742d30322e706e67" style="margin:1vh 1vw;"/>
If you are looking for the previous versions, please visit https://github.com/zoom/zoom-sdk-android/releases
You can find the full Zoom Android SDK documentation and the community support forum here:
<div align="center"> <a target="_blank" href="https://marketplace.zoom.us/docs/sdk/native-sdks/android" style="text-decoration:none"> <img src="https://camo.githubusercontent.com/56cdfebcb6fd07b4f263a414bcdc075fa7cd6c6905057811bd0ca3235414b263/68747470733a2f2f73332d75732d776573742d312e616d617a6f6e6177732e636f6d2f73646b2e7a6f6f6d2e75732f446f632d627574746f6e2e706e67" width="350px" max-height="350px" style="margin:1vh 1vw;"/> </a> <a target="_blank" href="https://devforum.zoom.us/c/mobile-sdk" style="text-decoration:none"> <img src="https://camo.githubusercontent.com/d785750e179aaf681e09e1b8dc8c26e86115255bce201fc8871e82a7eb4c7e5a/68747470733a2f2f73332d75732d776573742d312e616d617a6f6e6177732e636f6d2f73646b2e7a6f6f6d2e75732f466f72756d2d627574746f6e2e706e67" width="350px" max-height="350px" style="margin:1vh 1vw;"/> </a> </div>Zoom SDK makes it easy to integrate Zoom with your Android applications, and boosts up your applications with the power of Zoom.
Be aware that all hard-coded variables and constants shown in the documentation and in the demo, such as Zoom Token, Zoom Access, Token, etc., are ONLY FOR DEMO AND TESTING PURPOSES. Hardcoding any Zoom Credentials goes against Zoom's Security Best Practices. Do not HARDCODE any Zoom Credentials (username, password, API Keys & secrets, SDK keys & secrets, etc.) or any Personal Identifiable Information (PII) inside your application. WE MAKE NO COMMITMENTS ABOUT ANY LOSS CAUSED BY HARD-CODING CREDENTIALS OR SENSITIVE INFORMATION INSIDE YOUR APP WHEN DEVELOPING WITH OUR SDK..
If you're looking for help, try Developer Support or our Developer Forum. Priority support is also available with Premier Developer Support plans.
Please refer to LICENSE.pdf file for details
Copyright ©2020 Zoom Video Communications, Inc. All rights reserved.