4

我正在尝试运行Android SDK (Google API 10)我的 Kindle Fire 附带的演示 android 地图项目(MapsDemo),但是在安装应用程序时它会引发此异常。

[2012-01-31 23:01:15 - MapsDemo] Installing MapsDemo.apk...
[2012-01-31 23:01:17 - MapsDemo] Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY
[2012-01-31 23:01:17 - MapsDemo] Please check logcat output for more details.

和原木猫

01-31 23:06:01.206: D/PackageManager(1372): Scanning package com.example.android.google.apis
01-31 23:06:01.206: E/PackageManager(1372): Package com.example.android.google.apis requires unavailable shared library com.google.android.maps; failing!
01-31 23:06:01.206: W/PackageManager(1372): Package com.example.android.google.apis couldn't be installed.

当我在我的 HTC Desire 中运行时,相同的代码工作正常。

是否可以使用 KML 并使用 Google API 以外的其他方式绘制路线?

有人知道如何解决这个问题吗?

4

1 回答 1

7

您不能在 Kindle Fire 上使用适用于 Android 的 Google 地图插件,因为它不存在。

您可以添加android:required="false"<uses-library>清单中的元素,然后在运行时检查MapActivity该类是否在您的虚拟机中可用:

try {
  Class.forName("com.google.android.maps.MapActivity");
  // if you get here, you have Google Maps, so you can safely start a MapActivity
}
catch (Exception e) {
  // if you get here, you do not have Google Maps
}

在“你没有谷歌地图”的情况下,你会怎么做,就像你将在 Fire 中遇到的那样,这取决于你。

于 2012-01-31T16:12:21.553 回答