Commit 7d1782790a0a7d65333b936f41635650574963e0

Authored by YangShuai
1 parent ba851b62

1 修改二维码相关数据

config.gradle
... ... @@ -21,7 +21,7 @@ ext {
21 21 //编译方式
22 22 debug : false,
23 23 //版本号
24   - version: "0.3.20",
  24 + version: "0.3.21",
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
... ... @@ -130,7 +130,7 @@ public class InvitFriendView implements MvpView {
130 130 String qrContent = jsonObject.toString();
131 131 encryptionContent = SimpleDES.ebotongEncrypto(qrContent, "cnliveIm");
132 132 encryptionContent = encryptionContent.replaceAll("\\\n", "");
133   - encryptionContent = "http://apiwjj.cnlive.com/download/index.html" + "?isWjjQr=" + encryptionContent;
  133 + encryptionContent = "http://apiwjj.cnlive.com/download/index.html" + "?isWjjQr=" + encryptionContent+"&type=wjjQrXiaojiaBoxType";
134 134 QrService service = (QrService) ARouter.getInstance().navigation(QrService.class);
135 135 if (null == service) {
136 136 return;
... ...