OpenIM Docs • OpenIM Server • openim-sdk-core • open-im-sdk-android
Demo is a set of UI components implemented based on the Open-IM SDK, which includes functionalities such as conversations, chats, relationships, and groups. The project adopts MVVM+modular development, with high decoupling, independent business logic, code separation, making it easy to integrate the functionalities you need quickly and conveniently
Download the experience app
minSdk : 21
targetSdk : 32
compileSdk : 32
abiFilters : ['armeabi-v7a','arm64-v8a']
1.git clone:
git clone https://github.com/OpenIMSDK/Open-IM-Android-Demo.git
2.Importing the project
Place the Demo and UIkit folders in the same directory, and then import demo/app to get started
3.Configuration of modules
In the app/config.gradle file
ext {
//Module standalone running is set to true
isModule=false
//android config
androidConfig = [
minSdk : 21,
targetSdk : 32,
compileSdk : 32,
versionCode: 2,
versionName: "1.0.2",
abiFilters : ['armeabi-v7a', 'arm64-v8a']
]
//The ID of the module
applicationId = [
"app" : "io.openim.android.demo",
"OUIConversation" :"io.openim.android.ouiconversation",
"OUIGroup" : "io.openim.android.ouigroup",
"OUIContact" : "io.openim.android.ouicontact",
"OUICalling" : "io.openim.android.ouicalling",
]
}
In the app/build.gradle file
api project(':OUICore')
if (!isModule) {
implementation project(':OUIConversation')
implementation project(':OUIGroup')
implementation project(':OUIContact')
//Disabling a module will remove all functionalities associated with that module
//implementation project(':OUICalling')
}
We want anyone to get involved in our community and contributing code, we offer gifts and rewards, and we welcome you to join us every Thursday night.
Our conference is in the OpenIM Slack 🎯, then you can search the Open-IM-Server pipeline to join
We take notes of each biweekly meeting in GitHub discussions, Our historical meeting notes, as well as replays of the meetings are available at Google Docs :bookmark_tabs:.
Check out our user case studies page for a list of the project users. Don't hesitate to leave a 📝comment and share your use case.
OpenIM is licensed under the Apache 2.0 license. See LICENSE for the full license text.