I want to create a project structure like this in Eclipse and use it with Maven:
MyProject/ AndroidManifest.xml res/ ... (resources for main application) src/ ... (source code for main application) ... tests/ AndroidManifest.xml res/ ... (resources for tests) src/ ... (source code for tests)
I read about this structure on the Android website. Here is the topic http://developer.android.com/guide/topics/testing/testing_android.html
Can anyone help me?
Thanks!
source share