I want to try and use AspectJ as part of an android library project. I tried creating an android library project and used annotation based style to create pointcuts.
The problem is that the aspects of the library project does not get weaved into the android application which has added my library project.
My Android library project has few aspects defined in it. Something like
@AfterReturning(pointcut = "execution(* *.*(..)) && !this(com.xyz.aspects.xyz)")
public void abc(JoinPoint jp)
{
dosomething;
}
I've added this library project to my android application. However the 'dosomething' is not executed. Any advices?