I'm trying to set up an Android application with an Android library project dependence in Eclipse. I've set up a project called AnTest and a library project called AnLib. I've provided a reference to AnLib in the project properties of AnTest. Now I'm trying to refer to some library code (a static public method) from AnTest. Eclipse throws "com.anlib.Hello cannot be resolved to a type".
And it's not that the reference is dangling - I can see the resources properly merged. But from within AnTest, the only class in package com.anlib is "R".
Please, what am I doing wrong? Some very basic step must be missing...
EDIT: I've added AnLib to the Java build path/Projects in AnTest project properties. Now it compiles, but running throws a NoClassDefFoundError exception...
ant? If so, and it does compile, it's likely an Eclipse project setup issue, in which case, it'd help if you could post some more details on your setup. – Roman Nurik Jun 18 '10 at 21:32