Skip to content

Commit

Permalink
v1.5版本
Browse files Browse the repository at this point in the history
  • Loading branch information
szvone committed Apr 24, 2019
1 parent 78fb893 commit 8cf6ed3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ V免签为完全开源项目,开源项目意味着作者没有任何收入来
+ 本系统原理为监控收款后手机的通知栏推送消息,所以请保持微信/支付宝/V免签监控端后台正常运行,且添加到内存清理白名单!

## 更新记录
+ v1.5(2019.04.24)
+ 修复部分手机扫码配置失败的问题!

+ v1.4.1(2019.04.23)
+ 修复部分手机无法正确检测监听权限问题,点击监听权限按钮后,如果一切正常,状态栏会收到推送信息,并且会提示监听权限正常!

Expand Down
Binary file modified app/app-release.apk
Binary file not shown.
2 changes: 1 addition & 1 deletion app/src/main/java/com/vone/vmq/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ public void onResponse(Call call, Response response) throws IOException {
key = tmp[1];

//步骤2-1:创建一个SharedPreferences.Editor接口对象,lock表示要写入的XML文件名,MODE_WORLD_WRITEABLE写操作
SharedPreferences.Editor editor = getSharedPreferences("vone", MODE_WORLD_WRITEABLE).edit();
SharedPreferences.Editor editor = getSharedPreferences("vone", MODE_PRIVATE).edit();
//步骤2-2:将获取过来的值放入文件
editor.putString("host", host);
editor.putString("key", key);
Expand Down

0 comments on commit 8cf6ed3

Please sign in to comment.