Search Gradle plugins

Version 8.4.0-alpha12

8.4.0-alpha12

Created 05 March 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.4.0-alpha12"
}

See also:

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