Installation Guid
Android
1. First, add the following to the repositories section of your project’s root build.gradle or build.gradle.kts file:
allprojects {
repositories {
google()
mavenCentral()
// Add the Eyedid SDK Maven repository
maven {
url = uri("https://seeso.jfrog.io/artifactory/visualcamp-eyedid-sdk-android-release")
}
}
}
2. Add the Eyedid SDK Dependency
Next, in the build.gradle
or build.gradle.kts
file of the module where you want to use the Eyedid SDK, add the following line to the dependencies
section:
- build.gradle
- build.gradle.kts
dependencies {
// Add the Eyedid Gaze Tracker dependency
implementation "camp.visual.eyedid.android.gazetracker:eyedid-gazetracker:{version}"
}
dependencies {
// Add the Eyedid Gaze Tracker dependency
implementation("camp.visual.eyedid.android.gazetracker:eyedid-gazetracker:{version}")
}
CPP
To download the Eyedid SDK for C++, please visit the Eyedid SDK Management Console. You can find the latest version of the SDK and other resources available for C++ development on this page.