Search Gradle plugins

Owner: AlanMiu

The aspect of android studio plugin

https://github.com/AlanMiu

Sources: https://github.com/AlanMiu/AHAspect

Version 1.0

Created 11 May 2017.

The aspect of android studio plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.autohome.ahaspect") version "1.0"
}

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("com.autohome.ahaspect:com.autohome.ahaspect.gradle.plugin:1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.autohome.ahaspect")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.autohome.ahaspect:com.autohome.ahaspect.gradle.plugin:1.0")
      }
    }
    
    apply(plugin = "com.autohome.ahaspect")
  • Applying plugins to all subprojects .