这是indexloc提供的服务,不要输入任何密码

Search Gradle plugins

Version 2.6.8 (latest)

Created 23 July 2025.

Help you transform into an Android platform framework with AOP architecture

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.flyjingfish.androidaop") version "2.6.8"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.github.flyjingfish.androidaop:io.github.flyjingfish.androidaop.gradle.plugin:2.6.8")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.flyjingfish.androidaop")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.flyjingfish.androidaop:io.github.flyjingfish.androidaop.gradle.plugin:2.6.8")
      }
    }
    
    apply(plugin = "io.github.flyjingfish.androidaop")
  • Applying plugins to all subprojects .