Skip to content

Commit

Permalink
更新
Browse files Browse the repository at this point in the history
更新支持 4.3.2;
修复 7.0+ 直接闪退的问题;
更新说明;
  • Loading branch information
wuxiaosu committed Mar 24, 2018
1 parent 0b04ba8 commit 270648c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ Xposed 钉钉辅助模块,暂时实现模拟位置。
## 效果图
![00.png](https://raw.githubusercontent.com/wuxiaosu/XposedRimetHelper/master/screenshots/00.png)
## 下载
- release from [github](https://github.com/wuxiaosu/XposedRimetHelper/releases) [v1.0](https://github.com/wuxiaosu/XposedRimetHelper/releases/tag/v1.0)
- release from [github](https://github.com/wuxiaosu/XposedRimetHelper/releases) [v1.01](https://github.com/wuxiaosu/XposedRimetHelper/releases/tag/v1.01)
- release from [酷安](https://www.coolapk.com/apk/180336)
## v1.01
更新支持 4.3.2;
修复 7.0+ 直接闪退的问题;
## v1.0
支持版本:"4.2.0", "4.2.1", "4.2.6", "4.2.8", "4.3.0", "4.3.1"
6 changes: 3 additions & 3 deletions rimethelper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ android {
defaultConfig {
applicationId "com.wuxiaosu.rimethelper"
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
targetSdkVersion 23
versionCode 2
versionName "1.01"
}

signingConfigs {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class MainActivity extends BaseActivity {
private EditText mEtLocationStartTime;

private final String[] supportVersions =
new String[]{"4.2.0", "4.2.1", "4.2.6", "4.2.8", "4.3.0", "4.3.1"};
new String[]{"4.2.0", "4.2.1", "4.2.6", "4.2.8", "4.3.0", "4.3.1", "4.3.2"};

@Override
protected void onCreate(Bundle savedInstanceState) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,15 @@ public LocationHook(String versionName) {
webClazzName = "gxq";
otherClazzName = "brm";
break;
default:
case "4.3.1":
webClazzName = "gxt";
otherClazzName = "brm";
break;
default:
case "4.3.2":
webClazzName = "gzd";
otherClazzName = "bsg";
break;
}
}

Expand Down

0 comments on commit 270648c

Please sign in to comment.