How to add a dependency to Maven
Add the following com.cyngn.ambient : ambientsdk maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>com.cyngn.ambient</groupId>
<artifactId>ambientsdk</artifactId>
<version>1.6.0-147069776-39fe2d07</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following com.cyngn.ambient : ambientsdk gradle dependency to your build.gradle
file:
implementation 'com.cyngn.ambient:ambientsdk:1.6.0-147069776-39fe2d07'
Gradle Kotlin DSL: Add the following com.cyngn.ambient : ambientsdk gradle kotlin dependency to your build.gradle.kts
file:
implementation("com.cyngn.ambient:ambientsdk:1.6.0-147069776-39fe2d07")
How to add a dependency to SBT Scala
SBT Scala: Add the following com.cyngn.ambient : ambientsdk sbt scala dependency to your build.sbt
file:
libraryDependencies += "com.cyngn.ambient" % "ambientsdk" % "1.6.0-147069776-39fe2d07"