Merge remote-tracking branch 'origin/master'

This commit is contained in:
zlzw 2023-02-28 09:37:44 +08:00
commit af63c4c8ac
2 changed files with 5 additions and 3 deletions

View File

@ -2,6 +2,7 @@ package com.yunbao.common.manager;
import android.app.Activity; import android.app.Activity;
import android.content.Context; import android.content.Context;
import android.os.Build;
import android.os.Handler; import android.os.Handler;
import android.text.TextUtils; import android.text.TextUtils;
@ -276,11 +277,12 @@ public class IMLoginManager extends BaseCacheManager {
} }
public boolean isMountEffect() { public boolean isMountEffect() {
return getBoolean(MountEffect, true);
return getBoolean(MountEffect, !(Build.VERSION.SDK_INT < Build.VERSION_CODES.O));
} }
public boolean isGiftEffect() { public boolean isGiftEffect() {
return getBoolean(GiftEffect, true); return getBoolean(GiftEffect, !(Build.VERSION.SDK_INT < Build.VERSION_CODES.O));
} }
/** /**

View File

@ -24,7 +24,7 @@ ext {
baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S", baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S",
// true表示谷歌支付 false // true表示谷歌支付 false
isGooglePlay : false, isGooglePlay : true,
// //
isUploadLog : true isUploadLog : true
] ]