Tagged Questions
0
votes
1answer
7 views
Android Annotations and MonkeyTalk?
I just tried to update my project which uses Android Annotations to include the MonkeyTalk agent. However, as soon as I switch the project to an AspectJ project, all my Android Annotations references ...
0
votes
1answer
42 views
Null Ponter Exception while using Monkeytalk tool
Hello I have implemented MonkeyTalk library in my app I used following steps given at https://www.gorillalogic.com/monkeytalk-documentation/monkeytalk-getting-started/install-agent/android.
Through ...
0
votes
2answers
67 views
Use AspectJ in an android library project
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 ...
1
vote
1answer
49 views
Aspect J implementing in Titanium Android Module
I have tried to include Aspect J runtime library in to by creating titanium android module project in Titanium Studio & it was successful. Is there any luck to use aspect j pointcuts inside of a ...
0
votes
0answers
20 views
How to know which EditText changed what text using AspectJ in Android?
I want to know the EditText when it has got new text inputted.
I tried to listen onFocusChange method in AspectJ,but it seems that AspectJ could no get informed when text inputted in EditText;
I also ...
0
votes
0answers
318 views
ignition-location compile error
I am having trouble compiling the latest release of the Ignition library for Android. Everything was compiling fine until I updated to the latest version of the library.
[INFO] Reactor Summary:
...
4
votes
4answers
299 views
Capturing View.setOnClickListener() defined through XML
I'm using AspectJ with Android and I'm successfully capturing calls to View.setOnClickListener() with this aspect:
public aspect Test {
pointcut callPointcut(View view, OnClickListener listener) ...
1
vote
1answer
85 views
Ignition Location does not receive location updates
I try using ignition-location to get location updates in my Activity. The sample project does work. So far I did the following:
Added ignition-location apklib dependency to my pom.xml
Added ...
0
votes
1answer
113 views
Exception running JavaMOP Aspects inside Android
I'm using the MOP tool for Java (JavaMOP) to produce Aspects that run in Android.
I'm trying with the HasNext example that simply specifies that a program always calls the hasnext method before the ...
1
vote
1answer
140 views
Android with AspectJ - DropDown of Spinner wont show
i'm using aspectJ in my Android project because of monkeytalk ( cross platform testing framework ). But since i converted my project to an aspectJ project, the dropdown of the spinner is ...
1
vote
0answers
93 views
AspectJ aspect for OnItemClickListener.onItemClick
I was wondering if you have an idea on how to write an AspectJ advice that executes after the execution of Android's OnItemClickListener.onItemClick method.
I tried after(View view) : execution(void ...
1
vote
0answers
472 views
Latest build.xml for building Android with ant and aspectJ
I'm a newbie in Android develop.
Now there is an urgent work need I to use aspectJ develop an Android project, and use Ant to build the apk.
I found this project: ...
2
votes
1answer
816 views
Using aspectjtools.jar into Android project
I've imported aspectjtools.jar in my Android project, but when I run the project (no matter if I use or not the .jar in the code), eclipse shows the following warning:
[2012-03-05 16:34:20 - ...
0
votes
2answers
884 views
Android with AspectJ and building it with Ant on Eclipse
I'm new to Android and wanted to use AspectJ with it.
I had searched couple articles online and follow the instruction to have it working:
...
1
vote
1answer
234 views
Joining pointcuts on AspectJ
I'm new to AspectJ even though I knew about this AOP methodology for many years.
Now it's my first time to use it on my Android app, and want to ask few questions regarding to it.
I have Java code:
...
0
votes
1answer
603 views
Maven configuration for Android 3.0 using Library Projects and AspectJ
I've tried to find a solution for my problem but I haven't found it yet.
I'm working on a project that only compiles against Android 3.0, uses Android Library Projects, which are now supported by the ...
3
votes
1answer
1k views
AspectJ in Android: pointcut call(* Activity.onCreate(..)) doesn't pick out Activity.onCreate() calls
I am using AspectJ in my Android project and I'd like to write a pointcut that catches all the calls to onCreate() and onDestroy() of my activities. I am quite new to AspectJ, so probably I am ...
0
votes
1answer
122 views
How to do an inter-type injection on classes that have methods with a certain annotation?
To give you some context:
I am successfully using aspectJ with android projects, and I've written a @Background annotation that I apply to methods that cannot block the main UI thread.
This annotation ...