INSTALL_FAILED_MISSING_SHARED_LIBRARY an android emulator proplem

前端 未结 4 1787
悲&欢浪女
悲&欢浪女 2020-12-21 02:39

[2010-03-04 11:50:15 - AndroidSamples]Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY

when i uses the



        
相关标签:
4条回答
  • 2020-12-21 03:26

    Check to make sure that you run on a google api emulator.

    0 讨论(0)
  • 2020-12-21 03:31

    Check to make sure that your project target in Eclipse (or in your default.properties) has 'Google APIs' in the name, indicating that you're compiling with the Google APIs Add-On.

    Also make sure you've set the correct <uses-library> element in your manifest:

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

    For more information on the Google APIs Add-On and using Maps, see this link:

    • http://code.google.com/android/add-ons/google-apis/maps-overview.html
    0 讨论(0)
  • 2020-12-21 03:31

    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.

    0 讨论(0)
  • 2020-12-21 03:44

    I had an apk which i had to install on AVD 4.3 but installation failed due to INSTALL_FAILED_MISSING_SHARED_LIBRARY

    All i had to to was Go android sdk manager -> extras and then install all of the libraries present in that (like android support library etc)

    then restart emulator and installation must be fine

    0 讨论(0)
提交回复
热议问题