MVN

com.zello : zello-channel-sdk

Maven & Gradle

Apr 29, 2021
81 stars

Zello Channels SDK · The Zello Channels SDK allows you to integrate Zello push-to-talk into your own application. The SDK communicates with a Zello server over a web socket connection using a JSON-based protocol, and offers a simple API to send and receive audio, images, and text over Zello channels. Supported features include: Send voice messages from the device microphone Play incoming voice messages through the device speaker Send voice messages from your own audio code, e.g. from a file Receive voice message data with your own audio code with optional pass-through to the device speaker Send and recieve text messages Send and receive images Send the device's current location, and receive location messages from other users The protocol specification is also available if you prefer to develop your own client in-house.

<dependency>
    <groupId>com.zello</groupId>
    <artifactId>zello-channel-sdk</artifactId>
    <version>0.5.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.zello : zello-channel-sdk to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.5.2

All Versions

Choose a version of com.zello : zello-channel-sdk to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.5.x
zello-channel-sdk-0.5.2

How to add a dependency to Maven

Add the following com.zello : zello-channel-sdk maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.zello</groupId>
    <artifactId>zello-channel-sdk</artifactId>
    <version>0.5.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.zello : zello-channel-sdk gradle dependency to your build.gradle file:

implementation 'com.zello:zello-channel-sdk:0.5.2'

Gradle Kotlin DSL: Add the following com.zello : zello-channel-sdk gradle kotlin dependency to your build.gradle.kts file:

implementation("com.zello:zello-channel-sdk:0.5.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.zello : zello-channel-sdk sbt scala dependency to your build.sbt file:

libraryDependencies += "com.zello" % "zello-channel-sdk" % "0.5.2"

Advertisement