How to add a dependency to Maven
Add the following com.immomo.cosmos.mediax : beautysdk_interact maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>com.immomo.cosmos.mediax</groupId>
<artifactId>beautysdk_interact</artifactId>
<version>3.0.1_01211439</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following com.immomo.cosmos.mediax : beautysdk_interact gradle dependency to your build.gradle
file:
implementation 'com.immomo.cosmos.mediax:beautysdk_interact:3.0.1_01211439'
Gradle Kotlin DSL: Add the following com.immomo.cosmos.mediax : beautysdk_interact gradle kotlin dependency to your build.gradle.kts
file:
implementation("com.immomo.cosmos.mediax:beautysdk_interact:3.0.1_01211439")
How to add a dependency to SBT Scala
SBT Scala: Add the following com.immomo.cosmos.mediax : beautysdk_interact sbt scala dependency to your build.sbt
file:
libraryDependencies += "com.immomo.cosmos.mediax" % "beautysdk_interact" % "3.0.1_01211439"