我一直关注有关使用SDK管理器安装Google Play服务的帖子,确保.jar文件位于我的软件包&libs文件夹中并将依赖文件放入。
我仍然无法解决错误。
清单:
<receiver
android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="mypackage" />
</intent-filter>
</receiver>
GCMIntentService
无法解析符号GCMBaseIntentService
public class GCMIntentService extends GCMBaseIntentService {