views:

63

answers:

1

I was successfully using google maps in my application but then needed to change the Android SDK version from 1.5 to 2.0. Now the import for Google maps can't be resolved.

+1  A: 

Make sure you have

<uses-library
        android:name="com.google.android.maps" />

in your application manifest, and that you've downloaded not just the 2.0 SDK but the 2.0-with-google-APIs SDK. Then set your project's properties in Eclipse to check off the Google APIs version of the SDK you want. Then try to clean your build (Project-> Clean in eclipse; "ant clean" from the command line).

Yoni Samlan
that fixed it...thanks.
Kevin