I am trying to do a Map View in android (migrating from iOS). In the android SDK pannel I have google APIs (API 17) installed, which I was hoping would fix the problem. So in my source code I have:
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
And its giving me the error: The import com.google cannot be resolved
. I have searched google for a result, but they havent worked (most of them were making sure the Google API is installed.
I am on a Macbook Pro, 64 bit using Eclipse ADT downloaded from the android dev site.
In the AndroidManifest.xml
file I have:
<uses-library android:name="com.google.android.maps" />