当我收到通知时,我会打开我的应用程序(在我的服务中):
Intent intent = new Intent("fcm.ACTION.HELLO");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra("param1","value");
startActivity(intent);
如何读取index.android.js中的参数?
你
答案 0 :(得分:0)
我用这个功能做到了:
FCM.getInitialNotification().then(notif=>console.log(notif));