How to add a dependency to Maven
Add the following io.github.agantechnology : android-aliyunFaceGuard maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>io.github.agantechnology</groupId>
<artifactId>android-aliyunFaceGuard</artifactId>
<version>10033</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following io.github.agantechnology : android-aliyunFaceGuard gradle dependency to your build.gradle
file:
implementation 'io.github.agantechnology:android-aliyunFaceGuard:10033'
Gradle Kotlin DSL: Add the following io.github.agantechnology : android-aliyunFaceGuard gradle kotlin dependency to your build.gradle.kts
file:
implementation("io.github.agantechnology:android-aliyunFaceGuard:10033")
How to add a dependency to SBT Scala
SBT Scala: Add the following io.github.agantechnology : android-aliyunFaceGuard sbt scala dependency to your build.sbt
file:
libraryDependencies += "io.github.agantechnology" % "android-aliyunFaceGuard" % "10033"