Modify organize code notes

This commit is contained in:
2022-08-17 22:42:48 +08:00
parent 134a45f3e0
commit e47a008df0

View File

@@ -41,9 +41,17 @@ import com.highcapable.yukihookapi.hook.xposed.proxy.IYukiHookXposedInit
*
* 你可以在 [IYukiHookXposedInit] 的 [IYukiHookXposedInit.onHook] 中实现如下用法:
*
* 1.调用 [YukiHookAPI.encase] encase(MainHooker(), SecondHooker(), ThirdHooker() ...)
* 1.调用 [YukiHookAPI.encase]
*
* 2.调用 [PackageParam.loadHooker] loadHooker(hooker = CustomHooker())
* ```kotlin
* encase(MainHooker(), SecondHooker(), ThirdHooker() ...)
* ```
*
* 2.调用 [PackageParam.loadHooker]
*
* ```kotlin
* loadHooker(hooker = CustomHooker())
* ```
*
* 更多请参考 [InjectYukiHookWithXposed] 中的注解内容
*