我浏览了 Google 地图项目中有关 INSTALL_FAILED_MISSING_SHARED_LIBRARY 问题的所有文章,但找不到与我类似的案例或解决方案,所以这是我的问题:
我有一个活动项目(com.example.googleMaps.AndroidGoogleMapsActivity),它继承自 MapView 以显示谷歌地图并做一些事情。我在三星 Galaxy S II 上运行它,它运行良好:它显示地图并完成它应该做的事情。
现在。我想将此项目用作另一个项目的库,并将该活动显示为另一个应用程序的第一个屏幕。
所以我选中了 Is Library 框,我创建了一个新的 android 项目,该项目针对 GoogleAPI 构建,并将该库包含在 Eclipse 的 Android 属性中,并带有以下清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="test.test"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-sdk android:minSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<uses-library android:name="com.example.googleMaps" required="true" />
<uses-library android:name="com.google.android.maps" required="true" />
<activity android:name="com.example.googleMaps.AndroidGoogleMapsActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我在我的设备上运行这个新项目,我得到了臭名昭著的错误:INSTALL_FAILED_MISSING_SHARED_LIBRARY 并且 LogCat 完全沉默。
我想指出图书馆内的活动是有效的,所以没有一个众所周知的问题应该适用。
在客户端项目中,我指定了两个uses-library标记(一个用于我的库,一个用于 Google 库),我针对 GoogleAPI 构建,将该库包含在 Eclipse 的 Android 属性中并在经过测试的设备上运行。
我还缺少什么吗?