diff --git a/android/build.gradle b/android/build.gradle index f08c8b9..5b4afcf 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -53,5 +53,5 @@ dependencies { // 本地依赖,现将aar复制到libs/io/openim/core-sdk/0.0.1/ 下,命名core-sdk-0.0.1.aar // implementation 'io.openim:core-sdk:0.0.1@aar' // api 'io.openim:core-sdk:2.3.5-t44@aar' - implementation 'io.openim:core-sdk:3.0.0-beta13@aar' + implementation 'io.openim:core-sdk:3.0.0@aar' } \ No newline at end of file diff --git a/lib/flutter_openim_sdk.dart b/lib/flutter_openim_sdk.dart index 8e703b6..93b15fe 100644 --- a/lib/flutter_openim_sdk.dart +++ b/lib/flutter_openim_sdk.dart @@ -37,6 +37,5 @@ export 'src/models/organization_info.dart'; export 'src/models/search_info.dart'; export 'src/models/signaling_info.dart'; export 'src/models/user_info.dart'; -export 'src/models/workmoments_info.dart'; export 'src/openim.dart'; export 'src/utils.dart'; diff --git a/lib/src/models/workmoments_info.dart b/lib/src/models/workmoments_info.dart deleted file mode 100644 index 6def4df..0000000 --- a/lib/src/models/workmoments_info.dart +++ /dev/null @@ -1,56 +0,0 @@ -// class WorkMomentsInfo { -// int? notificationMsgType; -// String? replyUserName; -// String? replyUserID; -// String? content; -// String? contentID; -// String? workMomentID; -// String? userID; -// String? userName; -// String? faceURL; -// String? workMomentContent; -// int? createTime; -// -// WorkMomentsInfo( -// {this.notificationMsgType, -// this.replyUserName, -// this.replyUserID, -// this.content, -// this.contentID, -// this.workMomentID, -// this.userID, -// this.userName, -// this.faceURL, -// this.workMomentContent, -// this.createTime}); -// -// WorkMomentsInfo.fromJson(Map json) { -// notificationMsgType = json['notificationMsgType']; -// replyUserName = json['replyUserName']; -// replyUserID = json['replyUserID']; -// content = json['content']; -// contentID = json['contentID']; -// workMomentID = json['workMomentID']; -// userID = json['userID']; -// userName = json['userName']; -// faceURL = json['faceURL']; -// workMomentContent = json['workMomentContent']; -// createTime = json['createTime']; -// } -// -// Map toJson() { -// final Map data = new Map(); -// data['notificationMsgType'] = this.notificationMsgType; -// data['replyUserName'] = this.replyUserName; -// data['replyUserID'] = this.replyUserID; -// data['content'] = this.content; -// data['contentID'] = this.contentID; -// data['workMomentID'] = this.workMomentID; -// data['userID'] = this.userID; -// data['userName'] = this.userName; -// data['faceURL'] = this.faceURL; -// data['workMomentContent'] = this.workMomentContent; -// data['createTime'] = this.createTime; -// return data; -// } -// }