This repository contains binary distributions of Android products released by ConnectyCube.
If you have any questions, comments, or issues related to any products distributed via this repository then please raise an issue here on GitHub repository or contact the team by emailing support@connectycube.com.
This repository contains releases of the Android SDK for interacting with the ConnectyCube communications cloud.
It provides a simple interface to the messaging, video calling (WebRTC), push notifications, users management and cloud files storage capabilities provided by the platform.
Getting Started with ConnectyCube Android SDK
The ConnectyCube Android SDK can be installed directly into your application by importing sdk artifacts via Gradle.
Add the following code to your project's build.gradle file:
allprojects {
repositories {
maven {
url "https://github.com/ConnectyCube/connectycube-android-sdk-releases/raw/master/"
}
}
}
And the following code to your module's build.gradle
file:
For V2 :
def sdkVersion = '2.0.0-beta04'
dependencies {
implementation "com.connectycube.sdk:connectycube-android:$sdkVersion"
}
For V1 :
def sdkVersion = '1.9.2'
dependencies {
//
implementation "com.connectycube:connectycube-android-sdk-chat:$sdkVersion" // all transitive modules will be included automatically
implementation "com.connectycube:connectycube-android-sdk-videochat:$sdkVersion"
implementation "com.connectycube:connectycube-android-sdk-storage:$sdkVersion"
implementation "com.connectycube:connectycube-android-sdk-pushnotifications:$sdkVersion"
}
Got troubles with integration? Create an issue at Issues page.
ConnectyCube SDK for Android is licensed under the ConnectyCube SDK License.