Skip to content

Commit

Permalink
更新
Browse files Browse the repository at this point in the history
更新支持 4.3.3
  • Loading branch information
wuxiaosu committed Apr 3, 2018
1 parent 270648c commit b421587
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +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.01](https://github.com/wuxiaosu/XposedRimetHelper/releases/tag/v1.01)
- release from [github](https://github.com/wuxiaosu/XposedRimetHelper/releases)
- release from [酷安](https://www.coolapk.com/apk/180336)
## v1.02
更新支持 4.3.3
## v1.01
更新支持 4.3.2;
修复 7.0+ 直接闪退的问题;
Expand Down
4 changes: 2 additions & 2 deletions rimethelper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId "com.wuxiaosu.rimethelper"
minSdkVersion 21
targetSdkVersion 23
versionCode 2
versionName "1.01"
versionCode 3
versionName "1.02"
}

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", "4.3.2"};
new String[]{"4.2.0", "4.2.1", "4.2.6", "4.2.8", "4.3.0", "4.3.1", "4.3.2", "4.3.3"};

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

Expand Down

0 comments on commit b421587

Please sign in to comment.