drdev wrote:Is there any way to run it as an Android application so I can debug it? Or does the Maven setup prevent that?
AFAIK, you need an emulator or actual device attached to run the .apk (or the project it's built from). There might be a way to run it through Eclipse with ADT, but I haven't looked into it. You might just need to fix the errors you reported from before (remove the duplicate libraries from your classpath or lib/ folders) and run a debugger with that. I think you'll still need the emulator + virtual device to use the debugging tools, but you can leave them open while coding and deploy while it's running.
This link appears to be what you want.
Edit: Poking at it on my computer to see if I can get it working the way you want it to.
Edit 2: It looks like it might end up being more trouble than it's worth. The way the multi-module Maven project interacts with the Android project requirements seems to create an endless list of problems.
Edit 3: It seems like the way to go here would be to build and deploy the .apk with Maven,
then debug it by selecting the process on the emulator in Eclipse.