Interface JadxPlugin


  • public interface JadxPlugin
    Base interface for all jadx plugins
    To create new plugin implement this interface and add to resources a META-INF/services/jadx.api.plugins.JadxPlugin file with a full name of your class.
    • Method Detail

      • getPluginInfo

        JadxPluginInfo getPluginInfo()
        Method for provide plugin information, like name and description. Can be invoked several times.
      • unload

        default void unload()
        Plugin unload handler. Can be used to clean up resources on plugin unloading.