找不到com.google.android.gsf包


72

我正在尝试使用新的Google Cloud Messaging系统,但存在一些问题。

我阅读了入门文档并查看了演示应用程序;之后,我将要求应用于应用程序,然后使用API​​ 16创建了一个新的虚拟设备。

但是,当我尝试将设备注册到GCM时,由于以下原因,它失败了:

GCMRegistrar.checkDevice(getApplicationContext()); 

在logcat中,我看到以下错误:

07-05 07:06:31.925: E/AndroidRuntime(691): FATAL EXCEPTION: main
07-05 07:06:31.925: E/AndroidRuntime(691): java.lang.UnsupportedOperationException: Device does not have package com.google.android.gsf
07-05 07:06:31.925: E/AndroidRuntime(691):  at com.google.android.gcm.GCMRegistrar.checkDevice(GCMRegistrar.java:83)
07-05 07:06:31.925: E/AndroidRuntime(691):  at aero.tav.mobile.genel$4.onClick(genel.java:201)
07-05 07:06:31.925: E/AndroidRuntime(691):  at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:166)
07-05 07:06:31.925: E/AndroidRuntime(691):  at android.os.Handler.dispatchMessage(Handler.java:99)
07-05 07:06:31.925: E/AndroidRuntime(691):  at android.os.Looper.loop(Looper.java:137)
07-05 07:06:31.925: E/AndroidRuntime(691):  at android.app.ActivityThread.main(ActivityThread.java:4745)
07-05 07:06:31.925: E/AndroidRuntime(691):  at java.lang.reflect.Method.invokeNative(Native Method)
07-05 07:06:31.925: E/AndroidRuntime(691):  at java.lang.reflect.Method.invoke(Method.java:511)
07-05 07:06:31.925: E/AndroidRuntime(691):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
07-05 07:06:31.925: E/AndroidRuntime(691):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
07-05 07:06:31.925: E/AndroidRuntime(691):  at dalvik.system.NativeStart.main(Native Method)

我已经在班级路径中添加了gcm.jar;我不知道怎么了


6
您在使用模拟器吗?如果是这样,是Google API模拟器吗?如果不是这样的话,这就是您的问题
thepoosh

2
是Google API模拟器吗?
thepoosh,2012年

2
我现在检查了一下,我认为不是,它是Android 4.1 API16。API16有两种不同的模拟器。我应该使用哪一种?
bahadir arslan'7

3
具有Google API的目标名称应为Google APIs (Google Inc).
thepoosh 2012年

我按照您的建议创建了一个,然后重试。
bahadir arslan'7

Answers:


140

在我看来,您使用的是错误的模拟器。

默认的模拟器使用常规的Android模拟器,该模拟器没有任何Google软件包,并且无法运行地图,c2dm之类的各种东西以及诸如此类的东西。

您要做的就是创建一个可以支持Google API的新模拟器。

然后,当您运行项目时,选择运行目标名称的仿真器 Google APIs (Google Inc).

祝好运。


2
万一您无法在Android SDK Manager中找到适用于您的API级别的Google API包的有用链接:stackoverflow.com/a/7860557/775437
mjama 2012年

真的非常有帮助!谢谢
jaym

11

它可能在不支持GCM的设备上运行,因此您对GCMRegistrar.checkDevice(this);的调用 引发异常。检查您的logcat以确保。

如果要在模拟器上进行测试,请确保已将模拟器设置为使用Google API。创建仿真器时,“创建新的AVD”窗口将带有“目标”框。在该框中选择“ Google API”。

在此处输入图片说明

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.