Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Library Dependencies broken after SDK/ADT-Update

Today, I updated my Android SDK and Eciple ADT to the most recent versions (ADT Rev 22). After restarting Eclipse it is quite unhappy with the Build Paths whenever I reference custom libraries.

An example is shown in this screenshot: enter image description here

My custom "Android Utilities Library" compiles fine, but everything that depends on it shows build path errors. E.g. when I investigate the build path settings for "Android URA Library" it shows me an error with the android_utilities_library.jar missing under "Android Dependencies" (which in fact is true, the libraries will be built to individual class files in bin/classes).

After reading the solution to Build path errors with library projects I tried to clean and manually build my projects in the correct order, but to no avail.

I've never dealt with this before, so I don't know how to attack the problem.

Any help is appreciated. Thx!

like image 818
Chris Avatar asked May 21 '13 12:05

Chris


1 Answers

Installing the new Build Tools did the trick. They were not automatically included when I updated the SDK (probably need to run the update twice I guess).

like image 151
Chris Avatar answered Sep 27 '22 19:09

Chris