Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
去除无用输出
Browse files Browse the repository at this point in the history
  • Loading branch information
lliioollcn committed Sep 5, 2022
1 parent e2e439d commit f8c0971
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/cn/lliiooll/pphelper/hook/SettingHook.kt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ object SettingHook : BaseHook("setting","设置界面") {
ivNew.visibility = View.INVISIBLE
tvVersion.text = BuildConfig.VERSION_NAME
relaCheckUpdate.setOnClickListener {
"点击了检查更新".showShortToast()
//"点击了检查更新".showShortToast()
val intent = Intent(activity, SettingsActivity::class.java)
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
Utils.getApplication().startActivity(intent)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public class StartupHook {
*/
public static void init(Object instance, ClassLoader xposedClassLoader) throws Throwable {
injectClassLoader(instance, xposedClassLoader);
Toast.makeText(Utils.getApplication(),"正在寻找被混淆的类...",Toast.LENGTH_LONG).show();
DexKit.init();
Parasitics.injectModuleResources(Utils.getApplication().getResources());
Parasitics.initForStubActivity(Utils.getApplication());
Expand Down
1 change: 0 additions & 1 deletion app/src/main/java/cn/lliiooll/pphelper/utils/DexKit.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ public static void cache(String result) {
PLog.log("未找到合适的类: \n" + Arrays.toString(tokens.toArray()));
}
});
Toast.makeText(Utils.getApplication(),"加载完毕",Toast.LENGTH_LONG).show();
}

public static String doFilter(String key, List<String> classes) {
Expand Down

0 comments on commit f8c0971

Please sign in to comment.