#aspectjx Build Plugin aop scan code plugin
aspectjx {
enabled true
include 'com.android.*'
}
##Feature
include
configure the scan code package nameenabled
enable log printingorg.aspectj:aspectjrt:1.9.5
Use with this library
##Creating a new project Fill out build.gradle
aspectjx {
enabled true
include 'com.android.*'
}
Copy the following into settings.gradle.kts:
pluginManagement {
plugins {
id("io.github.xiaoyun-sun.aspectjx") version "1.0.0"
}
}
buildscript {
repositories {
maven { url = uri("https://plugins.gradle.org/m2/") }
mavenLocal()
}
dependencies {
classpath("io.github.xiaoyun-sun.aspectjx:1.0.0")
}
}