80,472
社区成员




PushManager.startWork(getApplicationContext(),
PushConstants.LOGIN_TYPE_API_KEY,
"PIv9kIZzAI.......");
03-06 18:59:48.093: E/AndroidRuntime(21876):
java.lang.RuntimeException:
Unable to start receiver com.winzxin.winzxin.baidupush.WinzxinPushMessageReceiver:
android.content.ActivityNotFoundException: No Activity found to handle Intent
{ flg=0x10000000 }
<!-- push应用定义消息receiver声明 广播接收者 -->
<receiver
android:name="com.winzxin.winzxin.baidupush.WinzxinPushMessageReceiver"
>
<intent-filter>
<!-- 接收push消息 -->
<action android:name="com.baidu.android.pushservice.action.MESSAGE" />
<!-- 接收bind,unbind,fetch,delete等反馈消息 -->
<action android:name="com.baidu.android.pushservice.action.RECEIVE" />
<action android:name="com.baidu.android.pushservice.action.notification.CLICK" />
</intent-filter>
</receiver>