user2522743
user2522743

Reputation: 1

INSTALL_FAILED_MISSING_SHARED_LIBRARY for Google Map example

While running my googlemap example I'm getting errors like

[TIMESTAMP - googlemap] Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY
[TIMESTAMP - googlemap] Please check logcat output for more details.
[TIMESTAMP - googlemap] Launch canceled!

and in logcat I haven't got anything.. please gimme the solution if anyone knows..

thanx in advance..

Upvotes: 0

Views: 144

Answers (2)

Shashank Shekhar
Shashank Shekhar

Reputation: 154

add this in your manifest :

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

Upvotes: 0

Sunil Kumar
Sunil Kumar

Reputation: 7082

Add this in your manifest file inside the application tag and create avd with target `Google APIs (Google Inc.)

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

Your emulator AVD does not have Google Maps. Create an emulator AVD with a "Target" that has "Google APIs (Google Inc.)" in the name.

Upvotes: 1

Related Questions