Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 855 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 855 Bytes

AccessBellAndroidSDK

Android SDK for AccessBell video conferencing

The following is a guide on how to set up the sdk in an existing Android project.

Add the Maven repository in the build.gradle file for the Android Studio application.

    allprojects {
        repositories {
            google()
            jcenter()
            maven {
                url "https://github.com/accessbell/AccessBellAndroidSDK/raw/master/releases"
            }
        }
    }

Add the following implementation under the dependencies section of the build.gradle section.

implementation ('org.accessbell.react:accessbell-meet-sdk:2.9.0') { transitive = true }

Rebuild your application and use the sdk by adding "import org.accessbell.meet.sdk" to the respective files in which you want to display your video conference.