You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Eduard,
I found your work about aspectj for android studio project.
I created a simple HelloWorld project with the android studio wizard.
Then, I tried to follow your "step by step" described in the section "Usage" on this page https://github.com/Archinamon/android-gradle-aspectj.
I created also the following Java class in order to test with 2 break points :
the first on the function "LogAspect.logAroundAllMethods"
the second on the function "MainActivity.onCreate"
The program stop on the second break point but not on the first one.
Can you help me to understand and solve this problem?
Thank you in advance for your help.
Best regards,
Franck
I added some logs in the function "logAroundAllMethods".
I run again my demo and the logs are produced but we can break into the advice.
So, we can close this issue.
Hello! Try to add log output in aspect class and look, plz, for file app/build/ajc-transform.log — there should be helpful info about what's going on your application.
Hi Eduard,
I found your work about aspectj for android studio project.
I created a simple HelloWorld project with the android studio wizard.
Then, I tried to follow your "step by step" described in the section "Usage" on this page https://github.com/Archinamon/android-gradle-aspectj.
I created also the following Java class in order to test with 2 break points :
The program stop on the second break point but not on the first one.
Can you help me to understand and solve this problem?
Thank you in advance for your help.
Best regards,
Franck
package fr.fserot.hellojavaworld.aspectj;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
@aspect
public class LogAspect {
}
The text was updated successfully, but these errors were encountered: