Search Gradle plugins

Version 3.3.0

Created 21 October 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.0"
}

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.0")
  }
}

apply(plugin = "io.github.wurensen.android-aspectjx")

Using the plugins DSL:

plugins {
  id "io.github.wurensen.android-aspectjx" version "3.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.wurensen:gradle-android-plugin-aspectjx:3.3.0"
  }
}

apply plugin: "io.github.wurensen.android-aspectjx"

Learn how to apply plugins to subprojects