Skip to content

Commit

Permalink
v1.13
Browse files Browse the repository at this point in the history
增加极简模式;
  • Loading branch information
su committed Feb 24, 2019
1 parent aaea6eb commit ffec974
Show file tree
Hide file tree
Showing 10 changed files with 233 additions and 361 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Xposed 微信辅助模块,实现消息防撤回、模拟位置、运动步数
- ~~release from [酷安](https://www.coolapk.com/apk/180057)~~(被和谐了)
## 交流
Q群:<a target="_blank" href="//shang.qq.com/wpa/qunwpa?idkey=7c9e21cbb5d754014485c8765efdb35a6b8d7fb470e89e2f12579ab82abfcc50" title="【微信助手】XP交流群">123320001</a>
群主人很好
## v1.13
诈尸,告诉大家还没弃坑;
## v1.12
修复了模拟定位;
修复了防撤回;
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'com.jakewharton:butterknife-gradle-plugin:8.8.1'
classpath 'com.android.tools.build:gradle:3.3.1'
classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0-rc2'


// NOTE: Do not place your application dependencies here; they belong
Expand Down
18 changes: 9 additions & 9 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 13
versionName "1.12"
versionCode 14
versionName "1.13"
}

signingConfigs {
Expand All @@ -32,10 +32,10 @@ android {
]
applicationVariants.all { variant ->
variant.outputs.all { output ->
def oldFile = output.outputFile
def newName = oldFile.name
def oldFile = output.outputFileName
def newName = oldFile
if (variant.buildType.name == 'release') {
newName = oldFile.name.replace(".", "-v" + variant.versionName + '.')
newName = oldFile.replace(".", "-v" + variant.versionName + '.')
}
outputFileName = newName
}
Expand All @@ -51,10 +51,10 @@ android {

applicationVariants.all { variant ->
variant.outputs.all { output ->
def oldFile = output.outputFile
def newName = oldFile.name
def oldFile = output.outputFileName
def newName = oldFile
if (variant.buildType.name == 'debug') {
newName = oldFile.name.replace(".", "-v" + buildTime() + '.')
newName = oldFile.replace(".", "-v" + buildTime() + '.')
}
outputFileName = newName
}
Expand All @@ -81,7 +81,7 @@ dependencies {
implementation 'com.android.support:appcompat-v7:26.1.0'
compileOnly 'de.robv.android.xposed:api:82'
implementation 'me.weishu:epic:0.3.6'
implementation 'com.jaeger.statusbarutil:library:1.4.0'
implementation 'com.jaeger.statusbarutil:library:1.5.1'
implementation 'com.github.arimorty:floatingsearchview:2.1.1'
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
Expand Down
1 change: 1 addition & 0 deletions wechathelper/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:resizeableActivity="true"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,10 @@ private void handleHook(ClassLoader classLoader, String versionName) {
TencentLocationManagerHook.hook(classLoader);
EmojiGameHook.getInstance().init(classLoader, versionName);
WalletHook.getInstance().init(classLoader, versionName);
// UIHook.getInstance().init(classLoader, versionName);
LauncherUIHook.getInstance().init(classLoader, versionName);
ExdeviceRankHook.getInstance().init(classLoader, versionName);
RevokeMsgHook.getInstance().init(classLoader, versionName);
ExtDeviceWXLoginUIHook.getInstance().init(classLoader, versionName);
// XLogHook.getInstance().init(classLoader, versionName);
}

private String getVersionName(Context context, String pkgName) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public void onClick(View v) {
}
});
mTvVersionName.setText(getString(R.string.app_name) + " v" + BuildConfig.VERSION_NAME);
mTvInfo.setText("可以请作者喝杯豆浆"
mTvInfo.setText("进群一起玩"
+ getContactInfo()
+ "\n更多详情:");
AlertDialog alertDialog = new AlertDialog.Builder(this)
Expand All @@ -225,7 +225,7 @@ public void onClick(View v) {

private String getContactInfo() {
return "\nQ群:[123320001]\n" +
"群主人很好\n";
"或者请作者喝杯豆浆\n";
}

private void sendURLIntent(String url) {
Expand Down
Loading

0 comments on commit ffec974

Please sign in to comment.