How can I intercept without converting my android project to Aspect j ?
aspect Trace {
pointcut methodCalls():
execution(* com.test..*(..))&& !within(com.test.Trace);
Thanks.
I really have no idea why you are unwilling to install AJDT (AspectJ Development Tools) in Eclipse because it makes life so much easier during aspect development and debugging, but be it as it might, you can write your aspects in any text editor and compile/weave them via Ajc (AspectJ Compiler). If you are not in software development stone age and have a Maven build, there is the excellent AspectJ Maven Plugin for automating your build.