Skip to content

Commit

Permalink
v1.6.1版本
Browse files Browse the repository at this point in the history
  • Loading branch information
szvone committed May 17, 2019
1 parent 63afe8e commit ef4f67a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,13 @@ V免签为完全开源项目,开源项目意味着作者没有任何收入来
+ 支付宝店员通绑定的店员账号收款的推送通知
+ 微信二维码收款推送通知
+ 微信店员收款推送通知
+ 微信收款商业版收款推送通知
+ 微信收款商业版店员到账收款通知

## 更新记录
+ v1.6.2(2019.05.17)
+ 增加微信收款商业版到账支持

+ v1.6.1(2019.05.17)
+ 修复微信无法正常回调的问题

Expand Down
Binary file modified app/app-release.apk
Binary file not shown.
6 changes: 6 additions & 0 deletions app/src/main/java/com/vone/vmq/NeNotificationService2.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@ public void onNotificationPosted(StatusBarNotification sbn) {
String money = getSubString(text,"[店员消息]收款到账","元");
Log.d(TAG, "onAccessibilityEvent: 匹配成功: 微信店员 到账 "+money);

appPush(1,Double.valueOf(money));
}else if (text.indexOf("微信收款商业版")!=-1){

String money = getSubString(text,"商业版: 收款","元");
Log.d(TAG, "onAccessibilityEvent: 匹配成功: 微信商业 到账 "+money);

appPush(1,Double.valueOf(money));
}
}
Expand Down

0 comments on commit ef4f67a

Please sign in to comment.