Qiscus Chat SDK (core) v1.3.28
ariefnurputranto
released this
30 Mar 07:33
·
94 commits
to master
since this release
Changelog :
- Remove duplicate manifest
- Add new parameters userId, includeExtensions, excludeExtensions in getFileList() api
- Migrate the chat-core library from Bintray to Artifactory
To integrate your app with Qiscus, it can be done in 2 (two) steps. First, you need to add URL reference in your .gradle project. This reference is a guide for .gradle to get Qiscus Chat SDK from the right repository. Below is how to do that:
allprojects {
repositories {
maven {
url "https://artifactory.qiscus.com/artifactory/qiscus-library-open-source"
}
}
}
Second, you need to add SDK dependencies inside your app .gradle. Then, you need to synchronize to compile the Qiscus Chat SDK for your app.
dependencies {
implementation 'com.qiscus.sdk:chat-core:1.3.28'
}
You can see our sample for update this migration in this link :
https://github.com/qiscus/qiscus-chat-sdk-android-sample.git