-
-
Notifications
You must be signed in to change notification settings - Fork 651
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start using @react-native-community/push-notification-ios #4163
Conversation
willPresentNotification:(UNNotification *)notification | ||
withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler | ||
{ | ||
// Update the badge count. Do not play sound or show an alert. For |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here, we explicitly tell it to update the badge count if a notification is received while the app is in the foreground. I haven't tested the previous behavior, but it seems quite plausible that no badge count updates were being done, just as no alerts were being shown. So this seems helpful with zulip/zulip#15179 in mind.
I've kept the suppression of the alerts (and the sound) to mimic current behavior; it may be considered distracting to see notifications for an app that's already foregrounded.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've just tested on 26.28.151 (from TestFlight) on CZO. Indeed, I can send myself messages from a test account (increasing the unread count) and go back to the home screen and see that the badge count did not change. Then I send myself another message, while the app is in the background, and the notification appears and the badge count updates. (It jumps to 609...but that's a server-side issue being investigated).
Being foregrounded should not suppress badge count updates; this PR should fix this. 🙂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Being foregrounded should not suppress badge count updates; this PR should fix this.
Hmm! Does that mean this fixes #4182? It sounds like it probably does.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would probably be good to do as a separate, previous commit. It's described in that RN module's docs... but it's purely using upstream iOS APIs. So it doesn't actually depend on whether we're using that RN module or some other library, and we can just treat that bit of docs as a helpful tip about how to handle notifications in an iOS app.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like great work! Very happy to have this cleaned up.
I still need to read the last two commits (the main ones) more closely while looking at the upstream setup instructions. Below are some comments from just a quick read.
// https://developer.apple.com/documentation/uikit/uiapplication/1622932-registerusernotificationsettings | ||
// (deprecated after iOS 10, yikes!); which after possibly prompting the | ||
// user causes "the app" (i.e. the platform part) to call this, I think, | ||
// though I haven't successfully traced all the steps there: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this mean you have traced through those steps? 🙂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did, but I don't remember offhand what they all were, and there's a chance that I missed something—I'll come back to this and write up the steps.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In my current revision, these comments contain more details, and I'm more sure about them.
Hmm, for the big picture, I've actually just remembered that Expo has this whole thing set up that we may (or more likely may not) want to buy into, where you can send push notifications through Expo's servers: https://github.com/expo/expo/tree/master/packages/expo-notifications#add-your-projects-credentials-to-expo-server-optional Apparently |
Pinging @gnprice on the above (#4163 (comment)) as it should have occurred to me earlier and it may be worth being aware of in some recent conversations about notifications (here maybe?). |
bbbf705
to
3d114e0
Compare
3d114e0
to
48e14db
Compare
OK, just fixed conflicts and adjusted some comments. I also filed react-native-push-notification/ios#179 for something I noticed in the library. In particular, I was glad to see this time around that react-native-push-notification/ios#66 helped the project move away from methods that were deprecated in iOS 10. |
48e14db
to
1f86380
Compare
// event names differ! wix has s/Error/Failed/ vs. upstream; also | ||
// upstream has singular for failure although plural for success, ouch.) | ||
// This leads to a call in RNCPushNotificationIOS to this, to | ||
// maybe prompt the user to grant authorization, with options for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Apple documentation for these newer things seems to prefer the term "authorization" over "permissions"; might as well echo that.
1f86380
to
2c077cb
Compare
I've just fixed some conflicts, and updated a few issues having both the (@gnprice) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @chrisbobbe !
We discussed in chat, and I think we want to stick with this line of libraries -- upgrading to the react-native-community library as this PR does -- rather than switch to the Expo notifications library.
Comments below -- all small, I think.
willPresentNotification:(UNNotification *)notification | ||
withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler | ||
{ | ||
// Update the badge count. Do not play sound or show an alert. For |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Being foregrounded should not suppress badge count updates; this PR should fix this.
Hmm! Does that mean this fixes #4182? It sounds like it probably does.
willPresentNotification:(UNNotification *)notification | ||
withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler | ||
{ | ||
// Update the badge count. Do not play sound or show an alert. For |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would probably be good to do as a separate, previous commit. It's described in that RN module's docs... but it's purely using upstream iOS APIs. So it doesn't actually depend on whether we're using that RN module or some other library, and we can just treat that bit of docs as a helpful tip about how to handle notifications in an iOS app.
src/notification/index.js
Outdated
@@ -267,53 +268,46 @@ export class NotificationListener { | |||
export const getNotificationToken = () => { | |||
if (Platform.OS === 'ios') { | |||
// This leads to a call in RNCPushNotificationIOS to this, to | |||
// maybe prompt the user to grant permissions: | |||
// https://developer.apple.com/documentation/uikit/uiapplication/1622932-registerusernotificationsettings?language=objc | |||
// (deprecated after iOS 10, yikes!). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is one bit I'm particularly glad to be deleting 🙂
It's necessary but not sufficient, I think; we'll have to turn on sending badge counts other than zero, IIRC, and play with that for a bit. I seem to remember we ran into some additional issues when we temporarily turned that on. |
(Still working on this; I'll post back here when it's ready for another review.) |
This is based on the recommended setup for PushNotificationIOS from React Native [1], so we might have included it in the next commit, where we fully set that up. But as Greg points out [2], this code is purely using upstream iOS APIs, so it doesn't depend on whether we're using that RN module or something else, so it's fine to do here on its own. In a departure from those instructions, we decide to just pass the thing (`UNNotificationPresentationOptionBadge`) that updates the badge count when the app is foregrounded. This is a necessary part of zulip#4182, but one thing we'll still need to do for that is test that the server is sending the right badge counts to the client. [1] https://reactnative.dev/docs/0.62/pushnotificationios. These instructions are actually missing a required change to the AppDelegate.h, which we take here, having seen it in the instructions for @react-native-community/push-notification-ios (at https://github.com/react-native-push-notification-ios/push-notification-ios#update-appdelegateh). [2] zulip#4163 (comment)
2c077cb
to
5bda5b5
Compare
OK, I've pushed another revision for review. 🙂 Please also see my comments at #4163 (comment) and #4163 (comment). |
In this commit: - Update "react-native", "react", and "flow-bin" in package.json. Run `pod update Folly --no-repo-update` to move past an error on the `pod install` step of the `postinstall` script [1]. After this step, the Podfile.lock file is much changed, as expected. There is also a change in the project.pbxproj file. - Update .flowconfig with the new Flow version, and address one new warning by removing a `$FlowFixMe` that we shouldn't have needed in the first place. (Usually this part is much more complicated!) - Update "jest-expo" in package.json, to oblige a peer-dependency constraint on "react". - TODO: Do something about react-native-cameraroll. - Make a change to the Podfile, according to facebook/react-native@a35efb940. - Instead of spelling out all the Pods from RN (all the non-Flipper-related Pods, that is -- we'll handle the Flipper ones in a later commit), call a function defined by React Native, `use_react_native!`, newly exposed in RN v0.63. - Since we're still using React-RCTPushNotification (pending the resolution of zulip#4163), take care to keep React-RCTPushNotification. It apparently hasn't yet been removed from React Native, but it understandably isn't handled by `use_react_native!`. See the PR thread for the list of RN commits affecting the template app and how we've chosen to propagate the template-app changes into our project. See also the RN v0.62 -> v0.63 upgrade guide [2], which gives a visual representation of the changes to the template app. It mostly matches the changes we've made; important deviations should have been explained in the commit list in the PR thread [3]. [1] TODO: Link to explanation on PR. [2] https://react-native-community.github.io/upgrade-helper/?from=0.62.2&to=0.63.4 [3] As always, the guide does show some changes that don't appear in the template app. I think this noise is an effect of how the guide is generated (with react-native-community/rn-diff-purge) and can safely be ignored. It's a diff between a fresh app created with `react-native init --version=$CURRENT` and a fresh app created with `react-native init --version=$NEXT`, for the selected values of `$CURRENT` and `$NEXT`. In particular: - I believe that some dependency version range changes in package.json, including for @babel/core and @babel/runtime, might be caused by different versions for those dependencies being available when the `react-native init` commands are run. - Some changes in ordering and unique ID values always seem to show up in the project.pbxproj file.
This is based on the recommended setup for PushNotificationIOS from React Native [1], so we might have included it in the next commit, where we fully set that up. But as Greg points out [2], this code is purely using upstream iOS APIs, so it doesn't depend on whether we're using that RN module or something else, so it's fine to do here on its own. In a departure from those instructions, we decide to just pass the thing (`UNNotificationPresentationOptionBadge`) that updates the badge count when the app is foregrounded. This is a necessary part of zulip#4182, but one thing we'll still need to do for that is test that the server is sending the right badge counts to the client. [1] https://reactnative.dev/docs/0.62/pushnotificationios. These instructions are actually missing a required change to the AppDelegate.h, which we take here, having seen it in the instructions for @react-native-community/push-notification-ios (at https://github.com/react-native-push-notification-ios/push-notification-ios#update-appdelegateh). [2] zulip#4163 (comment)
7915a3f
to
adbbab1
Compare
(Just rebased and resolved some conflicts.) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks and sorry for the delay!
Small comments below.
The one remaining item that's more significant is: I've lost track a bit of what the state is of badge counts. It seems like this PR will have us start applying badge-count updates more. In a subthread last year #4163 (comment) , you mentioned testing the change and seeing the badge counts update:
I've just tested on 26.28.151 (from TestFlight) on CZO. Indeed, I can send myself messages from a test account (increasing the unread count) and go back to the home screen and see that the badge count did not change. Then I send myself another message, while the app is in the background, and the notification appears and the badge count updates. (It jumps to 609...but that's a server-side issue being investigated).
Being foregrounded should not suppress badge count updates; this PR should fix this.
But then in that linked chat thread, it looks like a few weeks later we turned off sending badge counts other than zero, at least for iOS.
What's your understanding of the current state of what this will do with badge counts? With current server behavior, will badge counts continue to not appear?
As long as that's the case -- really, as long as this won't make current behavior any worse -- I'm happy merging this and then proceeding to get badge counts working as a separate project.
// Required for localNotification event | ||
- (void)userNotificationCenter:(UNUserNotificationCenter *)center | ||
didReceiveNotificationResponse:(UNNotificationResponse *)response |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, is this comment still right? (The method was application:didReceiveLocalNotification:
, which more evidently matches this description.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, good question. It's what the doc says, in the version we take in this commit: https://github.com/react-native-push-notification-ios/push-notification-ios/blob/v1.5.0/README.md
Also on master
(as of posting this): https://github.com/react-native-push-notification-ios/push-notification-ios/blob/master/README.md
Looks like it was added in react-native-push-notification/ios#104, which was a PR about local notifications.
Ah, and it looks like it was added specifically to bring local-notification functionality to iOS 10+. From the PR description:
Local notification event should work on IOS 10+ with new
didReceiveNotificationResponse
and prior to IOS 10 using olddidReceiveLocalNotification
method.
So I would default to keeping this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool, thanks for the investigation.
I still kind of have a suspicion that that wording is just cloned from the old version -- the diff in the PR looks like this:
// Required for the localNotification event.
→
// IOS 10+ Required for localNotification event
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
didReceiveNotificationResponse:(UNNotificationResponse *)response
withCompletionHandler:(void (^)(void))completionHandler
{
[RNCPushNotificationIOS didReceiveNotificationResponse:response];
completionHandler();
}
// IOS 4-10 Required for the localNotification event.
But 🤷 that's good enough. In a future where we're writing more code of our own here, we'll spend the time to understand this platform API more deeply ourselves, and then we can write our own comment (either more accurate, or just more convincingly accurate, e.g. with a link to docs.)
Good thought to check in about that. I don't expect this PR to change any badge-count behavior for current servers. That's because I believe current servers send a badge count of 0 with all notifications. (So it would be surprising if we started seeing badges, which only show if the badge count is above zero.) This is corroborated by these observations:
Re: this PR, it seems that iOS delegates control of badge counts to an app's code when the app is foregrounded. The commit In chat, you've mentioned that you think servers might not be sending totally the right shape of thing to convey the badge count. I haven't yet been able to follow the reasoning there; do you still think that might be the case? 🙂 I think you may have also mentioned (on a video call?) that we might have a bug in client-side code for parsing the badge-count value; I don't think I've followed that either, and possibly I'm mis-remembering what you've said. I do think there may have been a server bug where things in the database didn't look right; here's a message on CZO I'm looking at for that. I know of one bug that's indicated by Tim's comment, "likely mobile app side issue with handling notifications while the app is open" from zulip/zulip@2f66c825a. It's the one we hope to fix in the badge-count commit in this PR. 🙂 |
This is based on the recommended setup for PushNotificationIOS from React Native [1], so we might have included it in the next commit, where we fully set that up. But as Greg points out [2], this code is purely using upstream iOS APIs, so it doesn't depend on whether we're using that RN module or something else, so it's fine to do here on its own. In a departure from those instructions, we decide to just pass the thing (`UNNotificationPresentationOptionBadge`) that updates the badge count when the app is foregrounded, and not ask for other things like showing the banner or playing a sound. (This new behavior is necessary for fixing zulip#4182, but I don't think it's sufficient: we'll still want to test that the server is sending the right badge counts to the client.) [1] https://reactnative.dev/docs/0.62/pushnotificationios. These instructions are actually missing a required change to the AppDelegate.h, which we take here, having seen it in the instructions for @react-native-community/push-notification-ios (at https://github.com/react-native-push-notification-ios/push-notification-ios#update-appdelegateh). [2] zulip#4163 (comment)
…ingly. As Greg says [1], "It actually seems hard to me to 100% confirm this from the implementation! [...] It might be simpler to appeal to what this method's job is: it's giving us the notification data, which was passed over APNs as JSON." So, do that. [1] zulip#4163 (comment)
As Greg says [1], > Probably "interesting" wasn't a very clear way to write that > description; the distinction that I think it's intended to get at > is "unexpected", as in "buggy". [1] zulip#4163 (comment)
And throw an error if it gets one, since it definitely indicates a bug. See discussion at zulip#4163 (comment).
adbbab1
to
6949325
Compare
Thanks for the review! Revision pushed. 🙂 |
Cool, that's all very helpful, thanks. I'll go ahead and merge.
If we were to swap But as long as it's hard-coding a badge count of 0, any issues there are still dormant. So we're good to get this PR in, and then consider the next steps there. There were a few different bugs going on in the investigation in that chat thread:
I think that last bug is the one I had in mind in the message you linked to. |
Oh, one other mystery, but this one is OK if it stays a mystery: From reading the Apple docs following links from Namely, when we get a notification while the app is in the foreground, no notification appears in the UI -- there's no banner at the top, and it's not in Notification Center when I swipe from the top of the screen to see that. I just tested that empirically:
That behavior reflects what we're explicitly asking for with the change in this PR, passing just But if you look at the docs for that method, they say:
The behavior we're seeing is consistent with But in the status quo, I don't think it's the case that we have a delegate for + // Define UNUserNotificationCenter
+ UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
+ center.delegate = self; (… also, now that I've actually read some of the relevant API docs, I see that that comment is totally wrong. We're not defining that object -- the object already exists. The first line has us just getting a pointer to it, for us to use in the second line. The second line has us telling the center what object to use as its delegate object: namely, the And with some grepping I'm not finding anywhere that our dependencies are providing such a delegate on our behalf, either. E.g. So it sure seems like the docs say we should be seeing this behavior:
And what does it mean to "use" those "original options"? Well, there's this reference doc for composing an APNs payload. We're providing an We're also providing a Anyway. EIBTI -- I'm glad to be making it explicit what we want in this situation, and no longer relying on that corner of the API's behavior. Regardless of whether the solution to the mystery is that it's not doing what the docs say it does, or that we are in fact "provid[ing] a delegate" in some nonobvious way. |
…OS`. In an upcoming commit, we'll abandon `react-native-notifications` (which we'd only been using on iOS) in favor of PushNotificationIOS, provided by React Native (and then we'll take that same code from react-native-community, where it's maintained now). Once we've switched to PushNotificationIOS, none of the events we can listen to on iOS will match the Android events' names. That matching was pointed out in 4008643: """ And the names we use over the `DeviceEventEmitter` channel on Android are chosen to match the names the Wix library offers on its own event source... """ That meant that there were a few possible cases where we could call `this.listen` and pass a single name that wasn't conditioned on the platform. We took advantage of that possibility in one or two places, but we'll no longer be able to, unless we change the Android names to match these (keep reading for one reason not to do this). I'm happy to now have the `PushNotificationEventName` type from PushNotificationIOS (whether from RN or RNC) so we don't accidentally listen for events on iOS that won't be emitted. I'm optimistic that PushNotificationIOS may eventually have types that associate those names with the iOS-specific data shapes that are passed to their corresponding listeners. E.g., if I'm listening for the 'notification' event, my listener must only accept a PushNotificationIOS object. If such types are eventually provided, we'll want to use them -- but keep them away from Android codepaths. Having `this.listenIOS` and `this.listenAndroid` be separate, as well as keeping the events' names in different namespaces, will help with that. One gain from 8ee1793 is easily preserved: these helper functions still ensure that the appropriate functions are called to remove the listeners on `unlistenAll`.
This is based on the recommended setup for PushNotificationIOS from React Native [1], so we might have included it in the next commit, where we fully set that up. But as Greg points out [2], this code is purely using upstream iOS APIs, so it doesn't depend on whether we're using that RN module or something else, so it's fine to do here on its own. In a departure from those instructions, we decide to just pass the thing (`UNNotificationPresentationOptionBadge`) that updates the badge count when the app is foregrounded, and not ask for other things like showing the banner or playing a sound. (This new behavior is necessary for fixing zulip#4182, but I don't think it's sufficient: we'll still want to test that the server is sending the right badge counts to the client.) [1] https://reactnative.dev/docs/0.62/pushnotificationios. These instructions are actually missing a required change to the AppDelegate.h, which we take here, having seen it in the instructions for @react-native-community/push-notification-ios (at https://github.com/react-native-push-notification-ios/push-notification-ios#update-appdelegateh). [2] zulip#4163 (comment)
…ingly. As Greg says [1], "It actually seems hard to me to 100% confirm this from the implementation! [...] It might be simpler to appeal to what this method's job is: it's giving us the notification data, which was passed over APNs as JSON." So, do that. [1] zulip#4163 (comment)
wix/react-native-notifications doesn't seem to be maintained [1]. expo-notifications also works on both platforms, but we've decided it's not for us [2]. But we don't even use react-native-notifications in a cross-platform way; we uprooted the last of the linking logic on Android in 01b33ad. It also seems non-optimal to have two different libraries doing work to support push notifications on iOS. See also discussion [3]. So, let PushNotificationIOS from react-native take responsibility for what this library has been doing. Then, since *that's* deprecated, an upcoming commit will have us using that same code but from react-native-community, where it's maintained. These were my steps: 1. Use the setup instructions for our version of wix/react-native-notifications [4] to tear it down. 2. Use the setup instructions for `PushNotificationIOS` [5] from RN v0.62 to complete our setup. We hadn't yet done everything in these instructions, whether because we didn't need that functionality before, or it wasn't available in earlier RN versions. We did some of this setup in the previous commit. 3. Make tiny, NFC adjustments, mostly to indentation, to smooth the transition to the react-native-community module. 4. Change the call sites to use PushNotificationIOS, and update some types and comments. One part that stands out is the removal of the "consumeBackgroundQueue" hack from c0e2233. Nothing further is necessary, it just works. :) 5. Do various housekeeping things like removing the libdef. 6. On iOS, test that notifications still appear in the closed and background states and that, from either state, they navigate to the corresponding narrow. All works as expected, with one "gotcha": from a cold start, in debug mode, sometimes notifications don't navigate. There's an open issue for this [6], and it seems it doesn't affect release builds. In debug mode, I was able to solve it by disabling "Debug JS Remotely", following one comment there. In any case, `getInitialNotification` is what we've already been using PushNotificationIOS for, for a long time, so this hiccup is not new. 7. On Android, test that notifications appear (regardless of closed/background/foreground state) and that they navigate to the corresponding narrow. [1]: wix/react-native-notifications#519 (comment) [2]: https://chat.zulip.org/#narrow/stream/243-mobile-team/topic/iOS.20push.20notifications/near/1061130 [3]: https://chat.zulip.org/#narrow/stream/243-mobile-team/topic/iOS.20push.20notifications/near/825122 [4]: https://github.com/wix/react-native-notifications/blob/882775fb5/docs/installation.md [5]: https://reactnative.dev/docs/0.62/pushnotificationios [6]: react-native-push-notification/ios#24 (comment)
… core. In a recent commit, we asked RN's PushNotificationIOS to take responsibilities that were previously taken by wix/react-native-notifications, and removed the Wix library. Now, we account for the fact that PushNotificationsIOS from RN is deprecated [1] and asks us to use @react-native-community/push-notification-ios instead. So, do. These were my steps: 1. Use the setup instructions for `PushNotificationIOS` [1] from RN v0.62 to tear it down. 2. Follow the setup instructions for @react-native-community/push-notification-ios at the latest, v1.5.0 [2]. The native code closely matches what was there before, which makes sense. There are a few additions, and notes on old iOS APIs. We no longer support iOS 10, so we leave out some methods that target iOS <=10. 3. Follow the simple "Migrating..." instructions [3] that say you just have to change the imports; no call site changes are necessary. 4. Change a few comments that refer to details of the directory structure or implementation of the library. 5. Test thoroughly, as in the previous commit, and observe the same results. [1]: https://reactnative.dev/docs/0.62/pushnotificationios [2]: https://github.com/react-native-community/push-notification-ios/blob/v1.5.0/README.md [3]: https://github.com/react-native-community/push-notification-ios/blob/v1.5.0/README.md#migrating-from-the-core-react-native-module Fixes: zulip#4115
As Greg says [1], > Probably "interesting" wasn't a very clear way to write that > description; the distinction that I think it's intended to get at > is "unexpected", as in "buggy". [1] zulip#4163 (comment)
And throw an error if it gets one, since it definitely indicates a bug. See discussion at zulip#4163 (comment).
6949325
to
908f765
Compare
I've also just sent a quick PR with a small followup refactor to the |
Thanks for the review and merge! 🙂 |
And remove our dependency on wix/react-native-notifications.
Fixes: #4115
I took this up before I saw Greg's comment here about zulip/zulip#15179:
Ah, well; that particular need doesn't seem to require any code changes on mobile. But I've been really wanting to get this done because
(1) I've often been kind of confused by our dependency on two different libraries for different iOS push notification needs, when there's no obvious reason why everything couldn't be done by one library, and
(2) some peace and clarity comes from being on the latest versions of things. PushNotificationIOS from RN core is deprecated, and there are complaints about how well the Wix library is maintained; see the issue, and discussion linked from there.
So I went ahead and put this together.