[Super Group]

This commit is contained in:
hrxiang
2022-07-22 12:12:55 +08:00
parent cff0a4cce2
commit 18f099c437
7 changed files with 98 additions and 5 deletions

View File

@@ -41,5 +41,5 @@ android {
}
}
dependencies {
implementation 'io.openim:core-sdk:2.3.0@aar'
implementation 'io.openim:core-sdk:2.3.0-rc1@aar'
}

View File

@@ -397,4 +397,13 @@ public class MessageManager extends BaseManager {
jsonValue(methodCall)
);
}
public void getAdvancedHistoryMessageList(MethodCall methodCall, MethodChannel.Result result) {
Open_im_sdk.getAdvancedHistoryMessageList(
new OnBaseListener(result, methodCall),
value(methodCall, "operationID"),
jsonValue(methodCall)
);
}
}