Skip to content

Yuki Hook API

An efficient Hook API and Xposed Module solution built in Kotlin

Yuki Hook API

All Hook process in one step, everything is simplified

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

Released under the Apache-2.0 License