Skip to content

Commit

Permalink
upgrade to v3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ericliang committed Jul 21, 2022
1 parent 3ac6391 commit ef80676
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 351 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# floo-android Changelog
[蓝莺IM](https://www.lanyingim.com/),是由美信拓扑团队研发的新一代即时通讯云服务,SDK设计简单集成方便,服务采用云原生技术和多云架构,私有云也可按月付费。

## 3.3.2 - 2022/07/20
优化:
1. 删除无用的资源文件和API。
2. 纠正错误的API命名。

## 3.3.1 - 2022/07/09
优化:
1. 推送账号与IM账号共存时会话列表获取策略。
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ android {
defaultConfig {
targetSdkVersion 27
versionCode 1
versionName "3.3.1.20220709"
versionName "3.3.2.20220720"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
minSdkVersion 21
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/im/floo/floolib/BMXGroupManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void onPostExecute(BMXErrorCode code) {
* @param forceUpdate 设置为true强制从服务器获取,本地获取失败的情况sdk会自动从服务器获取
* @param callBack BMXErrorCode,搜索返回的群组信息
**/
public void getGroupList(final long groupId, final boolean forceUpdate,final BMXDataCallBack<BMXGroup> callBack) {
public void getGroupInfo(final long groupId, final boolean forceUpdate,final BMXDataCallBack<BMXGroup> callBack) {
final BMXGroup group = new BMXGroup();
new AsyncExecutor().exec(new AsyncExecutor.Task() {
@Override
Expand Down
16 changes: 0 additions & 16 deletions app/src/main/java/im/floo/floolib/BMXMessage.java
Original file line number Diff line number Diff line change
Expand Up @@ -309,14 +309,6 @@ public int groupAckCount() {
return flooJNI.BMXMessage_groupAckCount(swigCPtr, this);
}

/**
* 设置消息已读groupAckCount数目(SDK 内部调用接口,上层不应该调用)
* @param count 设置群消息已读数目
*/
public void setGroupAckCount(int count) {
flooJNI.BMXMessage_setGroupAckCount(swigCPtr, this, count);
}

/**
* 群消息未读AckCount数目
* @return int
Expand All @@ -325,14 +317,6 @@ public int groupAckUnreadCount() {
return flooJNI.BMXMessage_groupAckUnreadCount(swigCPtr, this);
}

/**
* 设置消息未读groupAckCount数目(SDK 内部调用接口,上层不应该调用)
* @param count 设置群消息未读数目
*/
public void setGroupAckUnreadCount(int count) {
flooJNI.BMXMessage_setGroupAckUnreadCount(swigCPtr, this, count);
}

/**
* 群消息是否全部已读
* @return bool
Expand Down
34 changes: 0 additions & 34 deletions app/src/main/res/drawable-v24/ic_launcher_foreground.xml

This file was deleted.

170 changes: 0 additions & 170 deletions app/src/main/res/drawable/ic_launcher_background.xml

This file was deleted.

109 changes: 0 additions & 109 deletions app/src/main/res/layout/activity_main.xml

This file was deleted.

6 changes: 0 additions & 6 deletions app/src/main/res/values/colors.xml

This file was deleted.

3 changes: 0 additions & 3 deletions app/src/main/res/values/strings.xml

This file was deleted.

11 changes: 0 additions & 11 deletions app/src/main/res/values/styles.xml

This file was deleted.

0 comments on commit ef80676

Please sign in to comment.