tags:

views:

33

answers:

1

hi i am venka reddy,

I am trying to write a mapView application .When i extend my class with MapActvity it will ganerates an error force to close application. And in log chat i got an runtime error like classNotFoundException.

plz solve my problem. ThanQ.

A: 

It's hard to point out the error without knowing what you've done so far, but at the very least you must add the library to your manifest:

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

You should also go into Window > Android SDK and AVD Manager in Eclipse and make sure the device your running is targeting Google APIs (Google Inc.) rather than Android x.x

David Hedlund