Search Gradle plugins

io.github.aleksrychkov.methodhook

An Android Gradle plugin to inject method call at the beginning and end of methods in Android application at compile time

https://github.com/aleksrychkov/android-method-hook-plugin

Sources: https://github.com/aleksrychkov/android-method-hook-plugin.git

Version 0.3 (latest)

0.3

Created 09 November 2024.

An Android Gradle plugin to inject method call at the beginning and end of methods in Android application at compile time

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.aleksrychkov.methodhook") version "0.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.aleksrychkov:methodhook-plugin:0.3")
      }
    }
    
    apply(plugin = "io.github.aleksrychkov.methodhook")
  • Applying plugins to all subprojects .