测试修改

This commit is contained in:
18401019693 2022-10-28 18:06:05 +08:00
parent 30902825d6
commit 6e582829b2
2 changed files with 12 additions and 4 deletions

View File

@ -4,8 +4,8 @@ ext {
buildToolsVersion: "28.0.3",
minSdkVersion : 21,
targetSdkVersion : 31,
versionCode : 229,
versionName : "6.4.3"
versionCode : 301,
versionName : "6.4.4"
]
manifestPlaceholders = [
//
@ -25,8 +25,8 @@ ext {
baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S",
// true表示谷歌支付 false
isGooglePlay : false,
isGooglePlay : true,
//
isUploadLog : false
isUploadLog : true
]
}

View File

@ -41,6 +41,8 @@ import com.yunbao.live.bean.LiveUserGiftBean;
import com.yunbao.live.http.LiveHttpUtil;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import io.reactivex.android.schedulers.AndroidSchedulers;
@ -279,6 +281,12 @@ public class LiveUserMoreDialogFragment extends AbsDialogFragment implements Vie
}
}
Collections.sort(data, (o1, o2) -> {
int nobleID1 = Integer.parseInt(o1.getNoble_id());
int nobleID2 = Integer.parseInt(o2.getNoble_id());
int i = nobleID1 - nobleID2;
return i;
});
Log.i("tag222", "ssss");
if (data.size() > 0 && pg == 1) {
nums = 0;