Commit 31e354a074b2b7c14e81895ccd197df354c07dfd

Authored by 韩亚云
1 parent bcd74012

代码合并2

config.gradle
... ... @@ -21,7 +21,7 @@ ext {
21 21 //编译方式
22 22 debug : false,
23 23 //版本号
24   - version: "0.7.26",
  24 + version: "0.7.27",
25 25 //Lib库前缀
26 26 packeg : "com.cnlive.module",
27 27 //Lib库名称
... ...
moudle_pedometer/src/main/java/com/cnlive/moudle/pedometer/ui/activity/ShareRecordActivity.java
... ... @@ -133,7 +133,7 @@ public class ShareRecordActivity extends AppCompatActivity {
133 133 String qrContent = jsonObject.toString();
134 134 String encryptionContent = SimpleDES.ebotongEncrypto(qrContent, "cnliveIm");
135 135 encryptionContent = encryptionContent.replaceAll("\\\n", "");
136   - String url = "http://apiwjj.cnlive.com/download/index.html" + "&isDZTVQr=" + encryptionContent;
  136 + String url = "http://apiwjj.cnlive.com/download/index.html" + "&isWjjQr=" + encryptionContent;
137 137 Bitmap bitmap = service.createQRNoIconBitmap(url, 350);
138 138 ((ImageView) findViewById(R.id.down_img)).setImageBitmap(bitmap);
139 139 }catch (Exception e){
... ...