INSTALL_FAILED_MISSING_SHARED_LIBRARY error in Android

AndroidGoogle MapsShared LibrariesFailed Installation

Android Problem Overview


When I am trying to run an android application which uses Google API I get the following error

> [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!

Can anyone help me solve this error?

Android Solutions


Solution 1 - Android

To get past INSTALL_FAILED_MISSING_SHARED_LIBRARY error with Google Maps for Android:

  1. Install Google map APIs. This can be done in Eclipse Windows/Android SDK and AVD Manager -> Available Packages -> Third Party Add-ons -> Google Inc. -> Google APIs by Google Inc., Android API X

  2. From command line create new AVD. This can be done by listing targets (android list targets), then android create avd -n new_avd_api_233 -t "Google Inc.:Google APIs:X"

  3. Then create AVD (Android Virtual Device) in Eclipse Windows/Android SDK and AVD Manager -> New... -> (Name: new_avd_X, Target: Google APIs (Google Inc.) - API Level X)

    IMPORTANT : You must create your AVD with Target as Google APIs (Google Inc.) otherwise it will again failed.

  4. Create Android Project in Eclipse File/New/Android Project and select Google APIs Build Target.

  5. add <uses-library android:name="com.google.android.maps" /> between <application> </application> tags.

  6. Run Project as Android Application.

If error persists, then you still have problems, if it works, then this error is forever behind you.

Solution 2 - Android

In my case, it was that the app had defaulted to a Wearable target device.

I removed the reference to Wearable in my Manifest, and the problem was solved.

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

Solution 3 - Android

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

if required is true, maybe you need to change

Solution 4 - Android

You can solve it be running on Google API emulator.

To run on Google API emulator, open your Android SDK & AVD Manager > Available packages > Google Repos > select those Google API levels that you need to test on.

After installing them, add them as virtual device and run.

Solution 5 - Android

  1. Open eclipse

  2. Goto: > project>Properties>Android> select: google APIs Android 4.0.3

  3. Click Icon:
    > Android Virtual Device Manager>Edit> Slect box in Tabget>Google APIs APIsLevel15
    and select Built-in: is WQVGA400 > Edit AVD > Start

Solution 6 - Android

//Check your manifest

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

//This was added for me while adding a new activity by mistake which was causing the problem.

Solution 7 - Android

I got this same error when installing to an actual device. More information and a solution to loading the missing libraries to the device can be found at the following site:

Fixing the INSTALL_FAILED_MISSING_SHARED_LIBRARY Error

To set this up correctly, there are 2 key files that need to be copied to the system:

com.google.android.maps.xml

com.google.android.maps.jar

These files are located in the any of these google app packs:

http://android.d3xt3...0120-signed.zip

http://goo-inside.me...0120-signed.zip

http://android.local...0120-signed.zip

> These links no longer work, but you can find the files in the android > sdk if you have Google Maps API v1

After unzipping any of these files, you want to copy the files to your system, like-ah-so:

adb remount

adb push system/etc/permissions/com.google.android.maps.xml /system/etc/permissions

adb push system/framework/com.google.android.maps.jar /system/framework

adb reboot

Solution 8 - Android

This may happen due to the following reasons -

  1. In your manifest file check the "
  2. there is a need for some code implementation in BUILD.GRADLE which you may have deleted mistakenly

So by removing the implementation or adding them can remove this error. You can remove the "uses" code in the android manifest file.

Examples:

  1. this wasted my 1 hour, cause I mistakenly added a class of wearable type, of course, I safe deleted that using refractor but it Didi not made changes to manifest file.

  2. I used the firebase crashlytics code in my java project but I mistakenly deleted that in buld.gradle. Here below: implementation 'com.google.firebase:firebase-crashlytics:17.1.1'

The solution is in either BUILD>GRADLE or in AndroidManifest.xml, mostly.

Solution 9 - Android

I am developing an app to version 2.2, API version would in the 8th ... had the same error and the error told me it was to google maps API, all we did was change my ADV for my project API 2.2 and also for the API.

This worked for me and found the library API needed.

Solution 10 - Android

This happens when you are trying to run application on emulator. Emulator does not have shared google maps library.

Solution 11 - Android

Another way to solve this problem is to install the missing libs that you need.

You can download the libs and see how to install here.

Solution 12 - Android

When I try these solutions.
I solved with:
create a new virtual device( select Google APIs(Google Inc)-API Level 15 replace android 4.0.3-APILevel 15 ) then run again. It solved.

I think it's just because the device have no google apis~

IDE:android-studio OS:ubuntu 12.04

Solution 13 - Android

Usually, it means that the app is installed/debugged on the device (including virtual device) that does not support some required library (it may relate to Android version or hardware).

Check elements <uses-library> in your manifest whether all libraries are supported on the device. In my case, it was EDMK (library for Zebra barcode scanners).

Note: Google Play uses the <uses-library> elements declared in your app manifest to filter your app from devices that don't meet its library requirements.

Option a)

If the library was added accidentally (its specific classes are not used in your app), remove the element <uses-library>.

Option b)

If the library is optional, add android:required="false" into <uses-library>. You may need to add validations in your code if some part requires this library.

Option c)

If the library is required, use another device or create a virtual one (AVD) that supports the library.

Solution 14 - Android

instead of removing the

>

in permission, just set the

> android:required="true" to false.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBrijesh PatelView Question on Stackoverflow
Solution 1 - AndroidMirco MageView Answer on Stackoverflow
Solution 2 - AndroidScotch DesignView Answer on Stackoverflow
Solution 3 - AndroidsemihView Answer on Stackoverflow
Solution 4 - AndroidsamwizeView Answer on Stackoverflow
Solution 5 - AndroidMr DouangkeoView Answer on Stackoverflow
Solution 6 - AndroidVivek KumarView Answer on Stackoverflow
Solution 7 - AndroidtoddView Answer on Stackoverflow
Solution 8 - AndroidVijayView Answer on Stackoverflow
Solution 9 - Androiddjose90View Answer on Stackoverflow
Solution 10 - AndroidkrekerView Answer on Stackoverflow
Solution 11 - AndroidSergeenhoView Answer on Stackoverflow
Solution 12 - AndroidAlps1992View Answer on Stackoverflow
Solution 13 - AndroidFenixView Answer on Stackoverflow
Solution 14 - AndroidRaheem JnrView Answer on Stackoverflow