Skip to content

Commit

Permalink
対応するバージョンの変更
Browse files Browse the repository at this point in the history
  • Loading branch information
areteruhiro committed Nov 10, 2024
1 parent f805df2 commit 100d559
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ android {
minSdk 28
targetSdk 35
versionCode 15
versionName "1.13.1b"
versionName "1.13.1b(14.17.0)"
multiDexEnabled false
proguardFiles += 'proguard-rules.pro'
buildConfigField 'String', 'HOOK_TARGET_VERSION', '"141810325"'
buildConfigField 'String', 'HOOK_TARGET_VERSION', '"141700420"'
}

signingConfigs {
Expand Down
1 change: 0 additions & 1 deletion app/src/main/java/io/github/hiro/lime/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ public class Main implements IXposedHookLoadPackage, IXposedHookInitPackageResou
new CrashGuard(),
new OutputResponse(),
new ModifyRequest(),
//new Test(),
new CheckHookTargetVersion(),
new SpoofAndroidId(),
new SpoofUserAgent(),
Expand Down
8 changes: 3 additions & 5 deletions app/src/main/java/io/github/hiro/lime/hooks/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,18 @@ public HookTarget(String className, String methodName) {
this.methodName = methodName;
}
}
//TRADITIONAL_CHINESE
//TRADITIONAL_CHINESE
static final HookTarget USER_AGENT_HOOK = new HookTarget("za1.c", "h");
//HANDLED_AND_RETURN_TRUE
//HANDLED_AND_RETURN_TRUE
static final HookTarget WEBVIEW_CLIENT_HOOK = new HookTarget("RI0.m", "onPageFinished");
//NOTIFICATION_DISABLED
static final HookTarget MUTE_MESSAGE_HOOK = new HookTarget("r91.b", "H");
//PROCESSING
//PROCESSING
static final HookTarget MARK_AS_READ_HOOK = new HookTarget("CM.d$d", "run");
//READNOTIFICATION
static final HookTarget NOTIFICATION_READ_HOOK = new HookTarget("Ta1.h", "invokeSuspend");

static final HookTarget REQUEST_HOOK = new HookTarget("org.apache.thrift.l", "b");
static final HookTarget RESPONSE_HOOK = new HookTarget("org.apache.thrift.l", "a");


}

0 comments on commit 100d559

Please sign in to comment.