Modify test Kotlin Class to Java Class

This commit is contained in:
2022-07-27 00:36:55 +08:00
parent 39bb96f975
commit 6b555d0f01
6 changed files with 65 additions and 81 deletions

View File

@@ -223,7 +223,7 @@ class HookEntry : IYukiHookXposedInit {
}
}
// 得到需要 Hook 的 Class
findClass(name = "$packageName.utils.Main").hook {
findClass(name = "$packageName.test.Main").hook {
// 注入要 Hook 的方法
injectMember {
constructor { param(StringType) }