我无法在Android设备上收到通知。我在应用启动时看到以下错误消息。
无法找到方法android.database.Cursor.getNotificationUri,从com.parse.ParseSQLiteCursor.getNotificationUri方法引用
任何指针?
答案 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);
}
}
});