The card does not work in the Samsung Galaxy tablet in the emulator

My application is developed using maps and some other lists.

When i removed

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

from the manifest file the application works fine, but when I add this to the manifest, I get

 Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY 

error how to solve this problem for the application to work in the emulator of the galaxy tablet

0
source share
2 answers

You must use Android Build with the Google API. Right-click your project> Properties> Android, select the item with the "Google APIs" in the target name. Be sure to select the version you need.

Google Maps requires an Android library containing the Google APIs. Therefore, if you use the Android SDK 2.3 ... then you should select "Google API 2.3".

enter image description here

If you cannot find it, you must download it using the Android SDK Manager.

enter image description here

Select the version you need:

enter image description here

+3
source

you should check that your AVD is simple or Google API

since Google MAP only works in the Google API.

0
source

All Articles