I am getting following error in android
while using googleMaps i am getting error on console i.e
Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY
开发者_JAVA百科please guide me what to do i changed sdk version in manifest file.
Specify in Android manifest file
<uses-library android:name="com.google.android.maps" />
From Dianne Hackborn (Android Framework Engineer):
You have a <uses-library>
line in your manifest for a shared library that is not built into the emulator. The log will probably tell you more.
Google is your friend
You might be using the incorrect Android API to run the program. To use Maps, you should use Google SDK not Android SDK
精彩评论