diff --git a/ISSUE_TEMPLATE b/ISSUE_TEMPLATE index 301d5761501c8043afe45db266ccb5001e713ab5..60f3c67b59d5e4a75e7947c0a6aa23b307e3783f 100644 --- a/ISSUE_TEMPLATE +++ b/ISSUE_TEMPLATE @@ -1,6 +1,3 @@ -there is a known issue with Firebase SDK with iOS 11 (search https://github.com/firebase/quickstart-ios issue number 327) -fix is `pod 'FirebaseInstanceID', "2.0.0"` - Before openning an issue 1. Reproduce it with the example project in this repo. 2. If you can't receive iOS notification, make sure you can receive notification using quickstart-ios project provided by Firebase team diff --git a/README.md b/README.md index 31f1ae302ca1a97840ea17af5c3dde44e1b0bd79..6cbc90839f5b23986cd4a8cdbed0d4e920188386 100644 --- a/README.md +++ b/README.md @@ -346,7 +346,7 @@ class App extends Component { // initial notification contains the notification that launchs the app. If user launchs app by clicking banner, the banner notification info will be here rather than through FCM.on event // sometimes Android kills activity when app goes to background, and when resume it broadcasts notification before JS is run. You can use FCM.getInitialNotification() to capture those missed events. // initial notification will be triggered all the time even when open app by icon so send some action identifier when you send notification - FCM.getInitialNotification().then(notif=>{ + FCM.getInitialNotification().then(notif => { console.log(notif) }); }