Я использую реагирующее родное push-уведомление для push-уведомлений в моем реактивном приложении. Для Android все работает нормально, но я не могу получить токен устройства для iOS. В чем может быть проблема?
PushNotification.configure({
onRegister(token) {
console.log('TOKEN:', token);
},
onNotification(notification) {
console.log('NOTIFICATION:', notification);
notification.finish(PushNotificationIOS.FetchResult.NoData);
},
// ANDROID ONLY: GCM or FCM Sender ID (product_number) (optional - not required for local notifications, but is need to receive remote push notifications)
senderID: '44290842894',