生产环境key修改

This commit is contained in:
huangjian
2022-10-25 18:52:00 +08:00
parent 9466e633db
commit 5d5b0771b8

View File

@@ -254,19 +254,22 @@ public class XChatConstants {
/**
* 聊天室文本消息易盾反垃圾業務id
*/
public static final String CHAT_ROOM_ANTI_SPAM_CONFIG_ID = BuildConfig.DEBUG ? "8151e1245163738e1fa84db7a02f8fb9" : "244721766ba607056a32c8824a85c253";
public static final String CHAT_ROOM_ANTI_SPAM_CONFIG_ID = BuildConfig.DEBUG ? "8151e1245163738e1fa84db7a02f8fb9" : "bddbbb617e9da4fcd08c6baf6686ad01";
public static final int KICK_OUT_ROOM_LIMIT_ENTER_TIME = 5 * 60 * 1000;
public static int SELECT_ANIM_DURATION = 2500;
public static long ZEGO_APP_ID = 1067458582L;
public static byte[] ZEGO_APP_SIGN = new byte[]{
(byte) 0x2b, (byte) 0x86, (byte) 0x24, (byte) 0xef, (byte) 0xd9, (byte) 0x96, (byte) 0xf1, (byte) 0x1c, (byte) 0x6b,
(byte) 0xa2, (byte) 0x28, (byte) 0xc3, (byte) 0xef, (byte) 0x24, (byte) 0xdd, (byte) 0x64, (byte) 0x2e, (byte) 0xd7,
(byte) 0x33, (byte) 0x3f, (byte) 0x33, (byte) 0x90, (byte) 0x07, (byte) 0x53, (byte) 0xeb, (byte) 0xd2, (byte) 0xd2,
(byte) 0x4e, (byte) 0xc5, (byte) 0xed, (byte) 0xfd, (byte) 0x43
};
public static final int CODE_IGNORE_TOAST = 5263;
public static int SELECT_ANIM_DURATION = 2500;
public static long ZEGO_APP_ID = BuildConfig.DEBUG ? 1067458582L : 1094103343L;
public static byte[] ZEGO_APP_SIGN = BuildConfig.DEBUG ?
new byte[]{
(byte) 0x2b, (byte) 0x86, (byte) 0x24, (byte) 0xef, (byte) 0xd9, (byte) 0x96, (byte) 0xf1, (byte) 0x1c, (byte) 0x6b,
(byte) 0xa2, (byte) 0x28, (byte) 0xc3, (byte) 0xef, (byte) 0x24, (byte) 0xdd, (byte) 0x64, (byte) 0x2e, (byte) 0xd7,
(byte) 0x33, (byte) 0x3f, (byte) 0x33, (byte) 0x90, (byte) 0x07, (byte) 0x53, (byte) 0xeb, (byte) 0xd2, (byte) 0xd2,
(byte) 0x4e, (byte) 0xc5, (byte) 0xed, (byte) 0xfd, (byte) 0x43} :
new byte[]{
(byte) 0x68, (byte) 0x2a, (byte) 0x50, (byte) 0xcf, (byte) 0x47, (byte) 0x12, (byte) 0xfd, (byte) 0x5e, (byte) 0x4b,
(byte) 0xb5, (byte) 0x69, (byte) 0xbb, (byte) 0x57, (byte) 0x99, (byte) 0x81, (byte) 0x4c, (byte) 0xb5, (byte) 0x8a,
(byte) 0x2e, (byte) 0x95, (byte) 0xb1, (byte) 0xe3, (byte) 0x48, (byte) 0x7f, (byte) 0x86, (byte) 0x01, (byte) 0x78,
(byte) 0xf1, (byte) 0xe0, (byte) 0x0c, (byte) 0x7a, (byte) 0xca
};
}