This repository contains binary distributions of QuickBlox Android SDK.
This repository contains releases of the Android SDK for interacting with the QuickBlox communications cloud.
QuickBlox is Communication as a Service provider. The platform provides chat using the XMPP protocol, WebRTC signalling for video/voice calling and an API for sending push notifications. It provides a user management system, data storage and more.
Project page on QuickBlox developers section
The QuickBlox 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/QuickBlox/quickblox-android-sdk-releases/raw/master/"
}
}
}
def qbSdkVersion = '4.2.1'
And the following code to your module's build.gradle
file:
dependencies {
//
сompile "com.quickblox:quickblox-android-sdk-chat:$rootProject.qbSdkVersion" //include only necessary module dependency, all transitive modules will be included automatically
сompile "com.quickblox:quickblox-android-sdk-content:$rootProject.qbSdkVersion"
сompile "com.quickblox:quickblox-android-sdk-messages:$rootProject.qbSdkVersion"
сompile "com.quickblox:quickblox-android-sdk-customobjects:$rootProject.qbSdkVersion"
}
Please raise questions, requests for help etc. via http://stackoverflow.com/questions/tagged/quickblox