主播开播的时候增加判断是否为链接包
This commit is contained in:
parent
8a6f1ae9e8
commit
b3fb2ebf43
@ -94,18 +94,19 @@ public class MainHomeViewHolder extends AbsMainHomeParentViewHolder {
|
||||
public void onViewClicks() {
|
||||
boolean isAnchor = IMLoginManager.get(mContext).getUserInfo().anchorUserType();
|
||||
if (isAnchor) {
|
||||
if (CommonAppConfig.faceSDKDownLoadOrUnZipFailed){
|
||||
if(CommonAppConfig.IS_GOOGLE_PLAY == 0) {
|
||||
if (CommonAppConfig.faceSDKDownLoadOrUnZipFailed) {
|
||||
// 美颜SDK下载或解压失败并且重试三次还是失败,提示用户重启
|
||||
ToastUtil.show(mContext.getResources().getString(R.string.face_sdk_load_failed));
|
||||
return;
|
||||
}
|
||||
|
||||
// 判断美颜SDK是否加载成功
|
||||
if (!CommonAppConfig.faceSDKIsLoadSuceness){
|
||||
if (!CommonAppConfig.faceSDKIsLoadSuceness) {
|
||||
ToastUtil.show(mContext.getResources().getString(R.string.wait_face_sdk_load));
|
||||
return;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
String[] permissions;
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
||||
|
Loading…
Reference in New Issue
Block a user