Commit d18bcab5642c4ddb41ba2cc6884247a02e613ab5

Authored by YangShuai
1 parent 8b751d93

1 修改二维码相关数据

config.gradle
... ... @@ -21,7 +21,7 @@ ext {
21 21 //编译方式
22 22 debug : false,
23 23 //版本号
24   - version: "0.3.26",
  24 + version: "0.3.27",
25 25 //Lib库前缀
26 26 packeg : "com.cnlive.module",
27 27 //Lib库名称
... ...
module_xiaojiaSoundBox/src/main/java/com/cnlive/strike/xiaojiaspeaker/frame/view/InvitFriendView.java
... ... @@ -131,7 +131,7 @@ public class InvitFriendView implements MvpView {
131 131 String qrContent = jsonObject.toString();
132 132 encryptionContent = SimpleDES.ebotongEncrypto(qrContent, "cnliveIm");
133 133 encryptionContent = encryptionContent.replaceAll("\\\n", "");
134   - encryptionContent = AppConfig.getShareDownload() + "isWjjQr=" + encryptionContent + "&type=wjjQrXiaojiaBoxType";
  134 + encryptionContent = AppConfig.getShareDownload() + "isWjjQr=" + encryptionContent + "&wjjQrSkipType=wjjQrXiaojiaBoxType";
135 135 QrService service = (QrService) ARouter.getInstance().navigation(QrService.class);
136 136 if (null == service) {
137 137 return;
... ...