设备- HTC Wildfire
Android 操作系统版本- 2.3.3
我正在尝试在手机上运行 google maps api v2 示例。
这些是 Logcat 消息 -
03-08 12:43:34.687: W/GooglePlayServicesUtil(5517): Google Play services is missing.
03-08 12:43:34.687: W/GooglePlayServicesUtil(5517): Google Play services is missing.
03-08 12:43:34.687: W/GooglePlayServicesUtil(5517): Google Play services is missing.
03-08 12:43:34.697: W/GooglePlayServicesUtil(5517): Google Play services is missing.
在应用程序上,我得到一个按钮,上面写着 -获取谷歌播放服务。
当我点击按钮时,我得到了一个例外。Logcat 说 -
03-08 12:43:36.847: E/AndroidRuntime(5517): FATAL EXCEPTION: main
03-08 12:43:36.847: E/AndroidRuntime(5517): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=http://play.google.com/store/apps/details?id=com.google.android.gms flg=0x80000 pkg=com.android.vending }
03-08 12:43:36.847: E/AndroidRuntime(5517): at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1569)
03-08 12:43:36.847: E/AndroidRuntime(5517): at android.app.Instrumentation.execStartActivity(Instrumentation.java:1539)
03-08 12:43:36.847: E/AndroidRuntime(5517): at android.app.Activity.startActivityForResult(Activity.java:2974)
03-08 12:43:36.847: E/AndroidRuntime(5517): at android.support.v4.app.FragmentActivity.startActivityForResult(FragmentActivity.java:817)
根据上述消息,我知道我的手机上缺少 google play 服务。
我的手机有市场应用程序(不是谷歌播放)。
几个问题-
- 如何将市场更新为google play 商店?
- 有没有办法可以安装谷歌播放服务?(注意:通过搜索 Google Play 商店,无法看到 Google Play 服务 APK。当客户端库检测到设备缺少或不兼容的 Google Play 服务 APK 时,它会提供到 Google Play 商店的深层链接。)
我将不胜感激。