Skip to content

Commit

Permalink
v1.2版本
Browse files Browse the repository at this point in the history
  • Loading branch information
szvone committed Apr 19, 2019
1 parent 2028eee commit 8b6db58
Show file tree
Hide file tree
Showing 19 changed files with 456 additions and 338 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ V免签 —— 个人开发者收款解决方案
===============


V免签 是基于SpringBoot 2.1.1 实现的一套免签支付程序,主要包含以下特色:
V免签 是基于SpringBoot 2.1.1/ThinkPhP5.1 实现的一套免签支付程序,主要包含以下特色:

+ 使用H2-Database,仅需安装Java环境,简单配置,一键搭建
+ JAVA、PHP双服务端,总有一款适合你服务器
+ 超简单Api使用,提供统一Api实现收款回调
+ 免费、开源

Expand Down Expand Up @@ -41,6 +41,12 @@ V免签 是基于SpringBoot 2.1.1 实现的一套免签支付程序,主要包
+ 本系统原理为监控收款后手机的通知栏推送消息,所以请保持微信/支付宝/V免签监控端后台正常运行,且添加到内存清理白名单!

## 更新记录
+ v1.2(2019.04.19)
+ 整理代码,重新优化APP兼容性
+ 添加店员到账支持,添加后可以实现安卓备用机/模拟器 挂小号取收款通知,方便IOS用户,
+ 微信绑定店员方式=>微信->收付款->二维码收款->收款小账本->添加店员接收通知
+ 支付宝绑定店员方式=>我的->商家服务->店员通->立即添加

+ v1.1(2019.02.25)
+ 修复安卓7.0以上系统监控App闪退问题
+ 修复监控端检测服务状态无法正确检测是否正常问题
Expand Down
Binary file modified app/app-release.apk
Binary file not shown.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ android {
compileSdkVersion 26
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "com.dommy.qrcode"
applicationId "com.vone.qrcode"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.dommy.qrcode;
package com.vone.qrcode;

import android.content.Context;
import android.support.test.InstrumentationRegistry;
Expand All @@ -21,6 +21,6 @@ public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();

assertEquals("com.dommy.qrcode", appContext.getPackageName());
assertEquals("com.vone.qrcode", appContext.getPackageName());
}
}
8 changes: 4 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dommy.qrcode">
package="com.vone.qrcode">

<uses-permission android:name="android.permission.INTERNET" /> <!-- 网络权限 -->
<uses-permission android:name="android.permission.VIBRATE" /> <!-- 震动权限 -->
Expand All @@ -9,14 +9,14 @@
<uses-feature android:name="android.hardware.camera.autofocus" /> <!-- 自动聚焦权限 -->

<application
android:name="com.dommy.vmq.MyData"
android:name="com.vone.vmq.MyData"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="com.dommy.vmq.MainActivity">
<activity android:name="com.vone.vmq.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand All @@ -27,7 +27,7 @@
<activity
android:name="com.google.zxing.activity.CaptureActivity"/>

<service android:name="com.dommy.vmq.NeNotificationService"
<service android:name="com.vone.vmq.NeNotificationService"
android:enabled="true"
android:exported="true"
android:label="V免签监控服务"
Expand Down
173 changes: 0 additions & 173 deletions app/src/main/java/com/dommy/vmq/NeNotificationService.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
import android.widget.ImageButton;
import android.widget.Toast;

import com.dommy.qrcode.R;
import com.dommy.vmq.util.BitmapUtil;
import com.dommy.vmq.util.Constant;
import com.vone.qrcode.R;
import com.vone.vmq.util.BitmapUtil;
import com.vone.vmq.util.Constant;
import com.google.zxing.BarcodeFormat;
import com.google.zxing.BinaryBitmap;
import com.google.zxing.ChecksumException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import android.os.Message;
import android.util.Log;

import com.dommy.qrcode.R;
import com.vone.qrcode.R;
import com.google.zxing.BarcodeFormat;
import com.google.zxing.Result;
import com.google.zxing.activity.CaptureActivity;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import android.os.Message;
import android.util.Log;

import com.dommy.qrcode.R;
import com.vone.qrcode.R;
import com.google.zxing.BinaryBitmap;
import com.google.zxing.DecodeHintType;
import com.google.zxing.MultiFormatReader;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import android.util.AttributeSet;
import android.view.View;

import com.dommy.qrcode.R;
import com.vone.qrcode.R;
import com.google.zxing.ResultPoint;
import com.google.zxing.camera.CameraManager;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.dommy.vmq;
package com.vone.vmq;

public class CommonRes<V> {

Expand Down
Loading

0 comments on commit 8b6db58

Please sign in to comment.