无法使用Parse.com推送通知服务在Android设备上接收通知

时间:2015-02-26 02:40:54

标签: parse-platform

我无法在Android设备上收到通知。我在应用启动时看到以下错误消息。

无法找到方法android.database.Cursor.getNotificationUri,从com.parse.ParseSQLiteCursor.getNotificationUri方法引用

任何指针?

1 个答案:

答案 0 :(得分:0)

如果您的代码与上面的解析示例代码中的旧代码类似。

// Specify an Activity to handle all pushes by default.
PushService.setDefaultPushCallback(this, SavedVideoListActivity.class);
ParseInstallation.getCurrentInstallation().saveInBackground();

尝试在新的示例代码中选择此代码。 (https://parse.com/tutorials/android-push-notifications

ParsePush.subscribeInBackground("", new SaveCallback() {
        @Override
        public void done(ParseException e) {
            if (e == null) {
                Log.d("com.parse.push", "successfully subscribed to the broadcast channel.");
            } else {
                Log.e("com.parse.push", "failed to subscribe for push", e);
            }
        }
    });