- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我已经在一个 GCM 项目上,注册后可以从 Google Server 接收消息。
本项目只包含一个包(com.example.gcm),所有的类(GCMIntentService ...)都声明在这个包中。下面的代码描述了我的 list 文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="YOUR PACKAGE NAME"
android:versionCode="1"
android:versionName="1.0" >
....
<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="YOUR PACKAGE NAME" />
</intent-filter>
</receiver>
<service android:name=".GCMIntentService" />
现在我正在尝试将这个 GCM 项目集成到我的主项目中,该项目至少包含 4 个子包。我采用与 Manfiest 相同的配置,我得到了类似的东西
....
<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="YOUR PACKAGE NAME" />
</intent-filter>
</receiver>
<service android:name=".notification.GCMIntentService" />
在 logcat 中,我得到了 GCM IntentService 类:YOUR PACKAGE NAME.GCMIntentService 这是不正确的,因为该类位于子包中。
如果我更改服务名称并输入包的全名,我会得到这个:
Unable to start service Intent { act=com.google.android.c2dm.intent.REGISTRATION cat=[ xxx ] flg=0x10 cmp=xxxx (has extras) }: not found
我已经阅读了很多主题,但没有任何帮助。
Is there a way to figure this out?
最佳答案
关于android - 如果项目包含子包,如何在 Manifest 中声明 GCMIntentService 的名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16164991/
我的应用程序运行正常,但我遇到了以下错误: 10-04 14:04:38.182: W/MessageQueue(8625): Handler (android.media.MediaPlayer$E
我想将 GCMIntentService 放在包根目录以外的目录中。 GCM documentation指出 By default, it must be named .GCMIntent
在我的应用程序中,我使用了 GCM 服务。我想在 onMessage 函数中发出哔哔声或播放一个小的 mp3 文件。 我的 GCMIntentService 是从 GCMBaseIntentServi
我已经阅读了在这里找到的关于 WakeLock 的各种解决方案,例如在 AndroidManifest.xml 中添加 Permission 以及确保将 GCMIntentService 的 Cons
我正在尝试在我的 android 应用程序中实现 GCMIntentService。 当我尝试将注册 ID 保存在我的数据库中时,asynhttp 显示以下错误 "sending message to
我正尝试在我的 Android 应用中实现 GCM。服务器端和客户端设置似乎是正确的,因为当我从服务器端“推送”一个字符串时调用了 onMessage 方法。我可以从 Intent 中读取额外内容,但
我使用 GCM 在发布图片时收到通知,然后我下载并处理它: public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {
我在拥有多个自定义类型的帐户时遇到了问题。 我用GCM (Google Cloud Messaging)从我们的应用程序服务器接收消息。现在,由于您需要自己实现 GCMIntentService ex
这个问题在这里已经有了答案: 关闭9年前。 Possible Duplicate: Android RuntimeException: Unable to instantiate the servic
所以我遇到了一些问题。我试图让我的应用程序根据通过 GCM 收到的消息执行操作。在本例中,应该使用 TextToSpeech 类来发出声音。它有点有效,但不是我第一次发送消息。我意识到这可能是因为 T
未调用 GCMIntentService 的 onRegisterd() 方法。 在日志中显示如下:onReceive:com.google.android.c2dm.intent.REGISTRAT
我正在关注来自 Android 开发人员的 GCM 演示。遇到以下情况。我在 GCMIntentService 中的 OnHandleIntent 没有被调用。有人可以帮忙吗? package com
我正在尝试在 GCM 上注册我的应用程序,但我不知道为什么我的应用程序从未注册过。 GCMRegistrar.register(this, SENDER_ID); 被调用,但我的 GCMIntentS
使用 Google 的 GCM 服务构建 Android 应用程序。 我已经在 GCMIntentService 类中实现了 onRegistered 方法。 问题是我想将主要 Activity 中的
我正在我的应用程序中实现 GCM。我已按照 developer.android.com 的 GCM 教程中给出的所有步骤进行操作 我的应用程序的构建目标指向 Goolge API 8(Android
我的应用程序过去运行得非常好。最近我更新了 eclipse(插件),现在我收到了这个错误。我没有更改我的代码,所以我知道它应该继续工作。但事实并非如此。我正在使用 google eclipse 插件,
您好,我想从 GCMIntentService 发送数据到我的主要 Activity ,我想在那里接收它?我该如何实现? 我非常坚持这一点在我的主要 Activity 中,我有一个列表,我想根据收到的
我正在尝试从 GCMBaseIntentService 运行 AsyncTask,但是当我这样做时应用程序崩溃了。令人感动的是,我想使用 MainActivity 中的上下文来让我的 AsyncTas
我想在收到 GCM 通知时获取用户在 Android 中的位置。 所以在我的 GCMIntentService extends GCMBaseIntentService 中,我这样做了: @Ov
我已经在我的 android 应用程序中成功实现了用于推送通知的 GCM 框架。但是我对 Google 在 GcmIntentService 类中覆盖的功能有点困惑。 @Override protec
我是一名优秀的程序员,十分优秀!