-1

I have a project A that imports a library. Name it library1. A is built as a library too. Then I have another project B that imports A and uses a type in library1. This was working for me until I updated to api 22. Now eclipse claims that can't find the type in library1.

I have spent quite a few hours trying to fix the problem without luck. Could anyone suggest what is hapenning?

Thanks in advance.

Thomas Kaliakos
  • 3,274
  • 4
  • 25
  • 39
Notbad
  • 5,936
  • 12
  • 54
  • 100

1 Answers1

0

Check this. There is a known issue with r22 tools. In short you have to include the libraries you use, in your export path.

Community
  • 1
  • 1
Thomas Kaliakos
  • 3,274
  • 4
  • 25
  • 39
  • What an odd issue. This fixed the problem. Thanks. The problem I'm facing now is that I get an class not found exception when using any class from the library :/ – Notbad Jun 05 '13 at 07:05