Skip to main content

Add Eyeson to your project

In order to use the SDk complete the following steps.

Dependencies

Add JitPack to your root build.gradle at the end of repositories:

allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}

Add the dependency to your app-level build.gradle. Latest version:

dependencies {
implementation 'com.github.eyeson-team:android-sdk:VERSION'
}

Permissions

The Eyeson Android SDK uses the following permissions:

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />

Add them to your manifest and make sure that you have requested the CAMERA and RECORD_AUDIO runtime permission before joining a meeting. See the Android documentation on how to request them.