Search Gradle plugins

Version 8.6.0-beta02

8.6.0-beta02

Created 08 August 2024.

Android AspectJ Post-Compile Weaving Plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.freefair.android.aspectj.post-compile-weaving") version "8.6.0-beta02"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.freefair.gradle:android-gradle-plugins:8.6.0-beta02")
      }
    }
    
    apply(plugin = "io.freefair.android.aspectj.post-compile-weaving")
  • Applying plugins to all subprojects .