Search Gradle plugins

com.ibotta.gradle.aop

A Gradle plugin for Android projects which performs AspectJ weaving using Android's bytcode manipulation pipeline.

https://github.com/Ibotta/gradle-aspectj-pipeline-plugin

Sources: https://github.com/Ibotta/gradle-aspectj-pipeline-plugin

Version 1.4.1 (latest)

1.4.1

Created 26 September 2022.

A Gradle plugin for Android projects which performs AspectJ weaving using Android's bytcode manipulation pipeline.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.ibotta.gradle.aop") version "1.4.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.ibotta:plugin:1.4.1")
      }
    }
    
    apply(plugin = "com.ibotta.gradle.aop")
  • Applying plugins to all subprojects .