Reputation: 2958
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?
Upvotes: 94
Views: 216230
Reputation: 21
I received an error INSTALL_FAILED_MISSING_SHARED_LIBRARY when I run the Datalogic Application using Android Mobile.
The Manifest file has
<uses-library android:name="com.datalogic.device"
android:required="true" />
So, I solved the error using false value of android:required="true"
When you get this type of error that's why your device is not compatible with the execution. Need to check what type of app SDK you are using and what is the device requirement.
Upvotes: 2
Reputation: 866
instead of removing the
<uses-library android:name="com.google.android.wearable" android:required="true" //>
in permission, just set the
android:required="true" to false.
Upvotes: 1
Reputation: 2401
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.
If the library was added accidentally (its specific classes are not used in your app), remove the element <uses-library>
.
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.
If the library is required, use another device or create a virtual one (AVD) that supports the library.
Upvotes: 1
Reputation: 406
//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.
Upvotes: 5
Reputation: 1014
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" />
Upvotes: 34
Reputation: 1388
This may happen due to the following reasons -
So by removing the implementation or adding them can remove this error. You can remove the "uses" code in the android manifest file.
Examples:
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.
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.
Upvotes: 3
Reputation: 1036
To get past INSTALL_FAILED_MISSING_SHARED_LIBRARY
error with Google Maps for Android:
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
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"
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.
Create Android Project in Eclipse File/New/Android Project and select Google APIs Build Target.
add <uses-library android:name="com.google.android.maps" /> between <application> </application> tags.
Run Project as Android Application.
If error persists, then you still have problems, if it works, then this error is forever behind you.
Upvotes: 97
Reputation: 1286
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
Upvotes: 3
Reputation: 841
<uses-library
android:name="com.google.android.maps"
android:required="false" />
if required is true, maybe you need to change
Upvotes: 34
Reputation: 97
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
Upvotes: 1
Reputation: 719
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.
Upvotes: 2
Reputation: 51
Goto:
project>Properties>Android> select: google APIs Android 4.0.3
Click Icon:
Android Virtual Device Manager>Edit> Slect box in Tabget>Google APIs APIsLevel15
and select Built-in: is WQVGA400 > Edit AVD > Start
Upvotes: 5
Reputation: 439
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.
Upvotes: 0
Reputation: 6261
This happens when you are trying to run application on emulator. Emulator does not have shared google maps library.
Upvotes: 1
Reputation: 27383
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.
Upvotes: 8