Files
YukiHookAPI/docs-source/src/en/index.md
2025-08-03 02:00:45 +08:00

1.7 KiB

home, title, heroImage, actions, features, footer
home title heroImage actions features footer
true Home /images/logo.png
text link type
Get Started /en/guide/home primary
text link type
Changelog /en/about/changelog secondary
title details
Xposed Module Develop The automatic builder can help you quickly create an Xposed Module, automatic configure the entry class and xposed_init files.
title details
Light and Elegant A powerful, elegant, beautiful API built with Kotlin lambda can help you quickly implement method Hook and more convenient functions.
title details
Debugging Efficient A rich debug log function, detailing the name of each hooked method, time-consuming to find the class can quickly debug and find errors.
title details
Easy to Transplant Natively supports multiple Xposed API usages and natively connects to multiple Xposed APIs, Hook Frameworks within the supported range can be quickly integrated.
title details
Obfuscate Support The built Xposed Module simply supports R8, obfuscate will not destroy the hook entry point, and no other configuration is required under R8.
title details
Quick to Start Simple and easy to use it now! Do not need complex configuration and full development experience, Integrate dependencies and enjoy yourself.
Apache-2.0 License | Copyright (C) 2019 HighCapable

All Hook process in one step, everything is simplified

loadApp(name = "com.android.browser") {
    Activity::class.resolve().firstMethod {
        name = "onCreate"
        parameters(Bundle::class)
    }.hook {
        before {
          // Your code here.
        }
        after {
          // Your code here.
        }
    }
}