views:

102

answers:

1

I'm trying to build a project in Android 1.5 that references another Android (library) project compiled against Android 1.5 and I keep seeing this error in the Console in Eclipse:

Target 'Android 1.5' does not support building project with libraries.

I'm running Eclipse 3.5, and version 0.9.7 of the ADT.

I followed the instructions here:

http://developer.android.com/guide/developing/eclipse-adt.html

What gives?

+1  A: 

The problem was that I was using the wrong revision of Android 1.5. Table 1 on this page:

http://developer.android.com/guide/developing/eclipse-adt.html

states that you must be using revision 4 or later of Android 1.5 to use Library projects.

Scienceprodigy