无法创建PushNotification实例

时间:2018-06-12 08:24:21

标签: android push-notification pusher android-push-notification

我为我的Android应用注册了Pusher / Beams帐户。我能够设置它没问题。但是当我去创建一个新的推送实例时,我遇到了一个错误。 Pusher 中的文档使用此代码:

String instanceId = "YOUR_INSTANCE_ID_HERE";
String secretKey = "YOUR_SECRET_KEY_HERE";

PushNotifications pushNotifications = new PushNotifications(instanceId,secretKey);

然而,当我将其复制并粘贴到Android工作室时,我收到一条错误消息,说PushNotifications不接受字符串。我很困惑为什么会这样。 这是我的代码:

import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import com.pusher.pushnotifications.PushNotifications;

public class MainActivity extends AppCompatActivity {
    String instanceId = "YOUR_INSTANCE_ID_HERE";
    String secretKey = "YOUR_SECRET_KEY_HERE";

    PushNotifications pushNotifications = new PushNotifications(instanceId, secretKey);

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        PushNotifications.start(getApplicationContext(), "my_instance_id");
        PushNotifications.subscribe("hello");
}

以下是错误的屏幕截图。

enter image description here

2 个答案:

答案 0 :(得分:0)

试试这个:PushNotificationsInstance pushNotifications = new PushNotificationsInstance (instanceId, secretKey);

答案 1 :(得分:0)

您不能将字符串作为第一个参数传递给PushNotification构造函数。您传递的参数不正确。

当前是:

PushNotifications pushNotifications = new PushNotifications(instanceId, secretKey);

更改为:

PushNotificationsInstance pushNotifications =
    new PushNotificationsInstance(getApplicationContext(), instanceId);

它会起作用。

点击此处查看更多信息:https://docs.pusher.com/beams/reference/android#quickstart