I can\'t build my android project, it says that com.google.android.maps does not exist. It is way strange because in my project in libraries I have them. I rebuild the build
ok, finally I managed to sort it out:
here is a link with everything:
http://code.davidjanes.com/blog/2009/11/13/18-hours-of-jar-hell-with-android-google-maps/
sorry for answering my own question
Make sure you
install the Google APIs in your Android SDK (this means the "Google APIs" choice instead of the "Android X.x" one)
specify to use this library in your manifest XML:
<uses-library android:name="com.google.android.maps" />
choose "Google API" as your "Build Target", not the "Android X.x" one.
FYI, when testing with the emulator AVD, you need to launch the "Google APIs" version instead of the "Android X.x" one.