- Project A is an android library project in my workspace(via project properties->android->library: is library).
- Project A declares classA.
- Project B uses project A (via project properties->android->library: add...).
- Project B instantiates classA.
When I use F3 ("open declaration") over the classA instance in project B, it leads me to the classA.class in the A.jar that is included in B, built from A.
Is there a way to go directly to the source classA.java in project A rather than looking for it in the package explorer?
I think this is new to ADT14, formerly there were X_src folder for each included library project: e.g. A_src would appear in B as a source folder in the root of the project.