io.github.wurensen.android-aspectjx
Owner: LanceWu
A Gradle plugin which enables AspectJ for Android builds. supports Kotlin, aar, jar aspect
https://github.com/wurensen/gradle_plugin_android_aspectjx
Sources: https://github.com/wurensen/gradle_plugin_android_aspectjx
Version 3.3.2 (latest)
3.3.2
Created 20 December 2022.
A Gradle plugin which enables AspectJ for Android builds. Supports Kotlin, aar, jar aspect.
Using the plugins DSL:
plugins {
id("io.github.wurensen.android-aspectjx") version "3.3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.wurensen:gradle-android-plugin-aspectjx:3.3.2")
}
}
apply(plugin = "io.github.wurensen.android-aspectjx")
Using the plugins DSL:
plugins {
id "io.github.wurensen.android-aspectjx" version "3.3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.wurensen:gradle-android-plugin-aspectjx:3.3.2"
}
}
apply plugin: "io.github.wurensen.android-aspectjx"