在Android Studio中使用MapView时INSTALL_FAILED_MISSING_SHARED_LIBRARY

时间:2013-05-20 19:35:35

标签: java android intellij-idea android-studio

我正在尝试在我的应用中使用com.google.android.gms.maps.MapView。它编译没有问题,但是从Android Studio启动时出现以下错误:

Failure [INSTALL_FAILED_MISSING_SHARED_LIBRARY]

我已尝试main thread for this question中的所有内容。

如果删除MapView引用和<uses-library>标记,则启动应用程序。

这涵盖了我在这个主题上可以找到的其他主题。有没有人知道可能导致此错误的任何其他内容?

1 个答案:

答案 0 :(得分:3)

  

我的AndroidManifest.xml文件<uses-library android:name="com.google.android.gms.maps" />标记中有<application>

删除它,当你做到这一点,它是你的困难的来源。 Maps V1使用<uses-library>元素(名称不同); Maps V2没有。

  

我的AVD使用Google API目标

目前,模拟器中不支持Maps V2。