Skip to content

Commit

Permalink
更改了实现方式
Browse files Browse the repository at this point in the history
修改实现方式,自动寻找hook点;增加了一个二维码弹窗;增加了混淆字典;更新了版本号;
  • Loading branch information
su committed Jun 19, 2018
1 parent 402c102 commit 4852703
Show file tree
Hide file tree
Showing 16 changed files with 5,165 additions and 395 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ Xposed 微信辅助模块,实现消息防撤回、模拟位置、运动步数
![01.png](https://raw.githubusercontent.com/wuxiaosu/XposedWechatHelper/master/screenshots/01.png)
![02.png](https://raw.githubusercontent.com/wuxiaosu/XposedWechatHelper/master/screenshots/02.png)
## 下载
- release from [github](https://github.com/wuxiaosu/XposedWechatHelper/releases)
- release from [酷安](https://www.coolapk.com/apk/180057)
- release from [github](https://github.com/wuxiaosu/XposedWechatHelper/releases)
- ~~release from [酷安](https://www.coolapk.com/apk/180057)~~(被和谐了)
## v1.11
更改了实现方式;
## v1.09
新增
微信登录自动确认;
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.jakewharton:butterknife-gradle-plugin:8.8.1'


Expand Down
8 changes: 5 additions & 3 deletions wechathelper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId "com.wuxiaosu.wechathelper"
minSdkVersion 21
targetSdkVersion 23
versionCode 10
versionName "1.09"
versionCode 12
versionName "1.11"
}

signingConfigs {
Expand All @@ -22,6 +22,8 @@ android {
buildTypes {
release {
minifyEnabled true
shrinkResources true
zipAlignEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release

Expand Down Expand Up @@ -89,5 +91,5 @@ dependencies {
}

static def buildTime() {
return new Date().format("yyMMddHHss", TimeZone.getTimeZone("GMT+08"))
return new Date().format("yyMMddHHmm", TimeZone.getTimeZone("GMT+08"))
}
Loading

0 comments on commit 4852703

Please sign in to comment.