使用Parse的推送通知时,Android App强制关闭

时间:2015-11-22 15:38:48

标签: android parse-platform push-notification

自从我开始使用Parse Push for android以来,我遇到了一些问题。 1.当应用未在后台运行时,我无法发送通知。 2.当应用程序未在后台运行时关闭,我发送推送通知。 3.当我点击收到的推送时,应用程序强制关闭。

Android Manifest

<service android:name="com.parse.PushService" />
    <receiver android:name="com.parse.ParsePushBroadcastReceiver"
        android:exported="false">
        <intent-filter>
            <action android:name="com.parse.push.intent.RECEIVE" />
            <action android:name="com.parse.push.intent.DELETE" />
            <action android:name="com.parse.push.intent.OPEN" />
        </intent-filter>
    </receiver>
    <receiver android:name="com.parse.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="cn.loptest" />
        </intent-filter>
    </receiver>

主要活动onCreate code

Parse.initialize(this, "********", "*******");
    ParseInstallation.getCurrentInstallation().saveInBackground();

如果我在上面的代码中使用PushService.setDefaultPushCallback,我总会得到一个“Connot Resolve Method”

TIA

0 个答案:

没有答案