IMbeeCore
Installation
Add maven arguments to gradle.properties
m_contextUrl=...
m_user=...
m_password=...Add maven repository to the application level build.gradle
allprojects {
repositories {
jcenter()
maven {
url "${m_contextUrl}/libs-release"
credentials {
username = "${m_user}"
password = "${m_password}"
}
}
}
}Add the class path dependency to the project level build.gradle (Module:app)
Add the class path dependency to the project level build.gradle (Module:app)
Apply the realm-android plugin to the top of the application level build.gradle
Configuration
You need add internet permission to AndroidManifest:
In onCreate() on an application subclass, you must initialize:
In onCreated() on an activity subclass, you can prepare, delete an existing user, configure ...
New quick configuration
Now you can with the new function
create both your user and connect to a conversation in one step:
Examples
Polling unread messages by conversation:
Sending an invisible message:
Last updated