feat: update SDK to 3.8.3+hotfix.12, add message upload progress, and adjust group application parameters

This commit is contained in:
Brett
2026-03-06 18:42:17 +08:00
parent 6c4ca2fb56
commit 95889be7a2
12 changed files with 60 additions and 34 deletions

View File

@@ -36,7 +36,7 @@ android {
}
dependencies {
implementation 'io.openim:core-sdk:3.8.3-patch10@aar'
implementation 'io.openim:core-sdk:3.8.3-patch12@aar'
testImplementation("junit:junit:4.13.2")
testImplementation("org.mockito:mockito-core:5.0.0")
}

View File

@@ -1 +1,2 @@
rootProject.name = 'flutter_openim_sdk'

View File

@@ -13,19 +13,4 @@ public class OnUserListener implements open_im_sdk_callback.OnUserListener {
public void onUserStatusChanged(String s) {
CommonUtil.emitEvent("userListener", "onUserStatusChanged", s);
}
@Override
public void onUserCommandAdd(String s) {
CommonUtil.emitEvent("userListener", "onUserCommandAdd", s);
}
@Override
public void onUserCommandDelete(String s) {
CommonUtil.emitEvent("userListener", "onUserCommandDelete", s);
}
@Override
public void onUserCommandUpdate(String s) {
CommonUtil.emitEvent("userListener", "onUserCommandUpdate", s);
}
}