I have a Android Project which is running fine on command line as well as using eclipse. So now I created the test project for the same, currently it is dependant on one external JAR. I kept this jar in libs/ directory. I can build and run the test project from command line.
Now the problem is that Eclipse is not able to recognize the JAR placed in libs directory and so eclipse is not able to build the project. I tried to modify build.properties file (setting the libs path in it), but that does not helped me.I don't want use properties ->JAVA build path -> Libraries -> Add external JARS in eclipse
Can some one tell the exact steps to build the test project with command line as well as with eclipse . Also, can I keep the JARs on another location than project directory ?
I don't want to use Maven