Search Gradle plugins

Version 8.7.2 (latest)

8.7.2

Created 20 November 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.7.2"
}

See also:

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