com.autohome.ahaspect
Owner: AlanMiu
The aspect of android studio plugin
Sources: https://github.com/AlanMiu/AHAspect
Version 1.0.2 (latest)
1.0.2
Created 17 May 2017.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
The aspect of android studio plugin
Using the plugins DSL:
plugins {
id("com.autohome.ahaspect") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.autohome:ahaspect:1.0.2")
}
}
apply(plugin = "com.autohome.ahaspect")
Using the plugins DSL:
plugins {
id "com.autohome.ahaspect" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.autohome:ahaspect:1.0.2"
}
}
apply plugin: "com.autohome.ahaspect"