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