Is there an equivalent aspectj-maven-plugin for gradle that works in android?

Working with maven and a pure java project, I was able to use the aspectj-maven-plugin component in the codec to weave (build time) (from the library I am creating) into my annotated classes.

I would like to do the same with the android project (gradle build), but cannot find much documentation.

I found the android-apt project here , but can't wrap myself around how to use it with aspect weaving.

Any help was appreciated.

+6
source share
1 answer

I found this project: eveoh / gradle-aspectj , which should help you. However, I am still trying to configure it for my project. GL =)

0
source

All Articles