This commit is contained in:
hrxiang 2021-10-14 10:26:34 +08:00
parent a71edf771d
commit 61f3c7285b
5 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,7 @@
## 0.0.9+2
1. Fix bug
2. Upgrade sdk
## 0.0.9+1 ## 0.0.9+1
Fix bug Fix bug

View File

@ -19,7 +19,7 @@ A flutter IM plugin for android and ios.
#### 1Add dependency in yaml #### 1Add dependency in yaml
flutter_openim_sdk: ^0.0.9+1 flutter_openim_sdk: ^0.0.9+2
#### 2Import package #### 2Import package

View File

@ -51,6 +51,5 @@ android {
} }
} }
dependencies { dependencies {
// implementation 'io.openim:client:0.0.13@aar' implementation 'io.openim:client-sdk:0.0.15@aar'
implementation 'io.openim:client-sdk:0.0.14@aar'
} }

View File

@ -473,7 +473,7 @@ class MergeElem {
abstractList = json['abstractList'].cast<String>(); abstractList = json['abstractList'].cast<String>();
} }
if (json['multiMessage'] is List) { if (json['multiMessage'] is List) {
multiMessage = (json['abstractList'] as List) multiMessage = (json['multiMessage'] as List)
.map((e) => Message.fromJson(e)) .map((e) => Message.fromJson(e))
.toList(); .toList();
} }

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: 0.0.9+1 version: 0.0.9+2
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