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