Genymotion Emulator : Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY

Viewed 30219

I have a project with V1 of Google Maps API. So i need the follow tag in my manifest

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

The problem is when i try to run on a Genymotion emulator. I received this error

        Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY

When i remove the uses-library tag I can run my project but then i have other error in my activity that uses google maps api.

What can i do??

Thanks

3 Answers

In the upper right corner of the Genymotion emulator, there is an Open GAPPS button above the battery option. Clicking that will prompt you to install Open GAPPS.

Once it's installed and the emulator is rebooted, you can install your app.

Related