我正在尝试在我的应用中使用com.google.android.gms.maps.MapView
。它编译没有问题,但是从Android Studio启动时出现以下错误:
Failure [INSTALL_FAILED_MISSING_SHARED_LIBRARY]
我已尝试main thread for this question中的所有内容。
<uses-library android:name="com.google.android.gms.maps" />
标记<application>
如果删除MapView引用和<uses-library>
标记,则启动应用程序。
这涵盖了我在这个主题上可以找到的其他主题。有没有人知道可能导致此错误的任何其他内容?
答案 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。