Skip to content

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
更新支持微信6.6.5,支付宝10.1.18
  • Loading branch information
su committed Mar 11, 2018
1 parent 255ed40 commit e9ed377
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 9 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ Xposed 修改微信、TIM、支付宝余额,假装自己很有钱,如图所
![02.png](https://raw.githubusercontent.com/wuxiaosu/XposedManyMoney/master/screenshots/02.png)
![03.png](https://raw.githubusercontent.com/wuxiaosu/XposedManyMoney/master/screenshots/03.png)
## 下载
- release from [github](https://github.com/wuxiaosu/XposedManyMoney/releases) [v1.01](https://github.com/wuxiaosu/XposedManyMoney/releases/tag/v1.01)
- release from [github](https://github.com/wuxiaosu/XposedManyMoney/releases) [v1.02](https://github.com/wuxiaosu/XposedManyMoney/releases/tag/v1.02)
- release from [酷安](https://www.coolapk.com/apk/178402)
## v1.02
更新支持微信 6.6.5,支付宝 10.1.15
## v1.01
修复支付宝金额格式化错误
## v1.0
Expand Down
5 changes: 3 additions & 2 deletions fakebalance/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ android {
applicationId "com.wuxiaosu.fakebalance"
minSdkVersion 21
targetSdkVersion 23
versionCode 2
versionName "1.01"
versionCode 3
versionName "1.02"
}

buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release

applicationVariants.all { variant ->
variant.outputs.all { output ->
Expand Down
8 changes: 6 additions & 2 deletions fakebalance/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,9 @@
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
-keep class com.wuxiaosu.fakebalance.Main { *; }
-keep class com.wuxiaosu.fakebalance.MainActivity { *; }
-keep class com.wuxiaosu.fakebalance.Main {
public void handleLoadPackage(...);
}
-keep class com.wuxiaosu.fakebalance.MainActivity {
private static boolean isModuleActive(...);
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
public class MainActivity extends BaseActivity {

private final String[] wechatSupportVersions =
new String[]{"6.6.0", "6.6.1", "6.6.2", "6.6.3"};
new String[]{"6.6.0", "6.6.1", "6.6.2", "6.6.3", "6.6.5"};
private final String[] timSupportVersions =
new String[]{"2.0.0", "2.0.1", "2.0.5", "2.1.0", "2.1.5"};
private final String[] alipaySupportVersions =
new String[]{"10.1.0", "10.1.2", "10.1.5", "10.1.8", "10.1.10", "10.1.12", "10.1.15"};
new String[]{"10.1.0", "10.1.2", "10.1.5", "10.1.8", "10.1.10", "10.1.12", "10.1.15", "10.1.18"};

@Override
protected void onCreate(Bundle savedInstanceState) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.wuxiaosu.fakebalance.hook;

import android.util.Log;

import com.wuxiaosu.fakebalance.BuildConfig;
import com.wuxiaosu.fakebalance.util.NumberUtils;
Expand Down Expand Up @@ -45,6 +44,8 @@ public AliPayHook(String versionName) {
break;
case "10.1.15":
break;
case "10.1.18":
break;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,21 @@ public WeChatHook(String versionName) {
walletBalanceManagerUIMethodName = "au";
walletBalanceManagerUIFiledName = "szP";
break;
default:
case "6.6.3":
mallIndexUIMethodName = "aYm";
mallIndexUIFiledName = "olV";

walletBalanceManagerUIMethodName = "au";
walletBalanceManagerUIFiledName = "szP";
break;
default:
case "6.6.5":
mallIndexUIMethodName = "aYS";
mallIndexUIFiledName = "orA";

walletBalanceManagerUIMethodName = "av";
walletBalanceManagerUIFiledName = "sFT";
break;
}
}

Expand Down

0 comments on commit e9ed377

Please sign in to comment.