我为我的 Android 应用注册了 Pusher/Beams 帐户。我能够设置它没有问题。但是当我去简单地创建一个新的 pushnotification 实例时,我遇到了一个错误。Pusher的文档使用以下代码:
String instanceId = "YOUR_INSTANCE_ID_HERE";
String secretKey = "YOUR_SECRET_KEY_HERE";
PushNotifications pushNotifications = new PushNotifications(instanceId,secretKey);
但是,当我从字面上将其复制并粘贴到 Android Studios 中时,我收到一条错误消息,提示 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");
}
这是错误的屏幕截图。