Reputation: 59
Iam trying to build or create a Android application but Iam seeing the error
"Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY"
Upvotes: 0
Views: 1815
Reputation: 1006674
You have a <uses-library>
element in your manifest. Either:
that <uses-library>
should not be there, or
you are attempting to install the app on a device that does not have that library
Upvotes: 0
Reputation: 2563
You use an emulator without the Google APIs but you require them in your project. Change the AVD image to support the Google API and also change your project to be built with the Google APIs.
Upvotes: 1