Using the MDK (Messay Development Kit), you can assign app behaviors to facial movements, eye movements, and gestures.
gradle.properties
.maven.messay=https://developer.messay.ndk-group.co.jp/maven/
local.properties
.The username is the same as the one used to log in to the MDK dashboard. For the password, use the authentication token generated from the Settings menu.
maven.messay.username=<Username>
maven.messay.password=<Token>
build.gradle.kts
.import java.util.Properties
val localProperties = Properties().apply {
val f = file("local.properties")
if (f.exists()) {
load(f.inputStream())
}
}
dependencyResolutionManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
maven(extra["maven.messay"]) { // Add Maven Repository
credentials {
username = localProperties.getProperty("maven.messay.username")
password = localProperties.getProperty("maven.messay.password")
}
}
}
}