views:

8376

answers:

1

Hi when i am trying to run android application which used Google API. it gets error that

[2009-07-11 11:46:43 - FirstMapView] Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY [2009-07-11 11:46:43 - FirstMapView] Please check logcat output for more details. [2009-07-11 11:46:44 - FirstMapView] Launch canceled!

so can anyone give me to solve this error. thankx.

+3  A: 

I am guessing from "FirstMapView" that you are trying to use Google Maps. Make sure you have your <uses-library> element in your manifest, that your project is set up to target API level 3 (android create project -t 3 ...), and that the AVD you are testing with is also set for API level 3 (or you are testing on an actual device with Google Maps on it).

CommonsWare
Now i got the answer through some search on net and it is likebefore i used Android 1.5 as target api, after that i change target from Android 1.5 to Google API. it was solved now.but anyway thanks for help.
Brijesh Patel
Ya thats true after change to API level to 3 error solved. thanks for your support.
Brijesh Patel