0

while using googleMaps i am getting error on console i.e

Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY

please guide me what to do i changed sdk version in manifest file.

Neha
  • 187
  • 3
  • 5
  • 15

3 Answers3

1

Specify in Android manifest file

<uses-library android:name="com.google.android.maps" />
Axarydax
  • 16,353
  • 21
  • 92
  • 151
Anand
  • 1,315
  • 1
  • 12
  • 18
0

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

trojanfoe
  • 120,358
  • 21
  • 212
  • 242
0

You might be using the incorrect Android API to run the program. To use Maps, you should use Google SDK not Android SDK

GSree
  • 2,890
  • 1
  • 23
  • 25