Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android - Failure [INSTALL_FAILED_MISSING_SHARED_LIBRARY]

I am totally new to android application development, I want to develop a sample map application using android studio

I followed the tutorial as such in http://android.rzeszow.net/?p=79 and the code is same

the emulator is GoogleAPI level 18

Once it ran and only + and - appeared on the map

Now in whichever emulator i try to run ( tried from google api level 13 to 18)

"Failure [INSTALL_FAILED_MISSING_SHARED_LIBRARY]"

I have done the solutions given in various stack overflow pages, but nothg seemed to work

Please suggest a solution

like image 561
karthi Avatar asked Dec 02 '22 21:12

karthi


1 Answers

Remove the unnecessary <uses-library> element from your manifest. Clearly you have one, which is triggering this error. Maps V2 does not need such an element.

like image 64
CommonsWare Avatar answered Dec 23 '22 16:12

CommonsWare