Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Commit

Permalink
feat: remove reply suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
mkx173 committed Feb 18, 2024
1 parent dbb8965 commit 21157c2
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ public List<? extends Matcher> matchers() {
new StringMatcher("bottom_bubble_config"),
new StringMatcher("top_level_navi"),
new StringMatcher("index_tab_info"),
new SmaliMatcher("Lcom/baidu/tbadk/coreExtra/floatCardView/AlaLiveTipView;-><init>(Landroid/content/Context;)V")
new SmaliMatcher("Lcom/baidu/tbadk/coreExtra/floatCardView/AlaLiveTipView;-><init>(Landroid/content/Context;)V"),
new SmaliMatcher("Lcom/baidu/tbadk/editortools/meme/pan/SpriteMemePan;-><init>(Landroid/content/Context;)V")
);
}

Expand Down Expand Up @@ -166,6 +167,10 @@ protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
XposedHelpers.findAndHookMethod(clazz, sClassLoader, method, "android.view.ViewGroup",
XC_MethodReplacement.returnConstant(null));
break;
case "Lcom/baidu/tbadk/editortools/meme/pan/SpriteMemePan;-><init>(Landroid/content/Context;)V": // 点我快速配图经验+3
XposedHelpers.findAndHookMethod(clazz, sClassLoader, method, "android.content.Context",
XC_MethodReplacement.returnConstant(null));
break;
}
});
// 启动广告
Expand Down

0 comments on commit 21157c2

Please sign in to comment.