如何使用参数从服务启动react-native应用程序?

时间:2016-12-17 15:28:37

标签: android react-native

当我收到通知时,我会打开我的应用程序(在我的服务中):

Intent intent = new Intent("fcm.ACTION.HELLO");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra("param1","value");
startActivity(intent);

如何读取index.android.js中的参数?

1 个答案:

答案 0 :(得分:0)

我用这个功能做到了:

FCM.getInitialNotification().then(notif=>console.log(notif));