https://github.com/connectycube/connectycube-android-sdk-releases
Releases packages for ConnectyCube Android SDK platform
https://github.com/connectycube/connectycube-android-sdk-releases
Last synced: over 1 year ago
JSON representation
Releases packages for ConnectyCube Android SDK platform
- Host: GitHub
- URL: https://github.com/connectycube/connectycube-android-sdk-releases
- Owner: ConnectyCube
- Created: 2018-06-07T07:58:24.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2025-01-22T11:24:59.000Z (over 1 year ago)
- Last Synced: 2025-01-22T12:27:43.711Z (over 1 year ago)
- Homepage: https://connectycube.com
- Size: 36.9 MB
- Stars: 8
- Watchers: 4
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
[](https://stand-with-ukraine.pp.ua)
# ConnectyCube Android SDK Releases
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](mailto:support@connectycube.com).
## ConnectyCube SDK
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](https://developers.connectycube.com/android/)
## Installation
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:
```groovy
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** :
```groovy
def sdkVersion = '2.0.0'
dependencies {
implementation "com.connectycube.sdk:connectycube-android:$sdkVersion"
}
```
For **V1** :
```groovy
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"
}
```
## Have an issue?
Got troubles with integration? Create an issue at [Issues page](https://github.com/ConnectyCube/connectycube-android-sdk-releases/issues).
# License
ConnectyCube SDK for Android is licensed under the ConnectyCube SDK License.
