This commit is contained in:
hrxiang 2022-11-11 14:22:17 +08:00
parent 3e03460300
commit 9c5aa56609
5 changed files with 21 additions and 2 deletions

View File

@ -1,3 +1,7 @@
## 2.3.4+5
- Fix bug
## 2.3.4+4 ## 2.3.4+4
- Fix bug - Fix bug

View File

@ -39,5 +39,5 @@ android {
} }
} }
dependencies { dependencies {
implementation 'io.openim:core-sdk:2.3.4-rc2@aar' implementation 'io.openim:core-sdk:2.3.4-rc3@aar'
} }

View File

@ -9,6 +9,7 @@ export 'src/enum/im_platform.dart';
export 'src/enum/listener_type.dart'; export 'src/enum/listener_type.dart';
export 'src/enum/message_status.dart'; export 'src/enum/message_status.dart';
export 'src/enum/message_type.dart'; export 'src/enum/message_type.dart';
export 'src/enum/sdk_error_code.dart';
export 'src/listener/advanced_msg_listener.dart'; export 'src/listener/advanced_msg_listener.dart';
export 'src/listener/connect_listener.dart'; export 'src/listener/connect_listener.dart';
export 'src/listener/conversation_listener.dart'; export 'src/listener/conversation_listener.dart';

View File

@ -0,0 +1,14 @@
///
class MessageFailedCode {
///
static const int blockedByFriend = 600;
///
static const int deletedByFriend = 601;
}
///
class AddFriendFailedCode {
///
static const int refuseToAddFriends = 10007;
}

View File

@ -1,6 +1,6 @@
name: flutter_openim_sdk name: flutter_openim_sdk
description: An instant messaging plug-in that supports Android and IOS. And the server is also all open source. description: An instant messaging plug-in that supports Android and IOS. And the server is also all open source.
version: 2.3.4+4 version: 2.3.4+5
homepage: https://www.rentsoft.cn homepage: https://www.rentsoft.cn
repository: https://github.com/OpenIMSDK/Open-IM-SDK-Flutter repository: https://github.com/OpenIMSDK/Open-IM-SDK-Flutter