You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is this issue for?
The core PushNotificationIOS module has been depreciated from React-Native. We can see this error in the console window when we start the server.
This is where official RN docs mention this.
Steps to solve this issue
We will use the react-native-community/push-notification-ios package. Instead of using PushNotificationIOS from react-native we will use the same from the above-mentioned package in /src/notification/index.js. The docs of the package mention the use of the PushNotificationIOS.
The text was updated successfully, but these errors were encountered:
React-Native core 'PushNotificationIOS' module has been
depreciated.
The React-Native docs mentions to use one of the community
package called 'react-native-community/push-notification-ios'.
Used the above mentioned package to solve the depreciation
warning.
Fixes: zulip#4510
This deprecation warning is covered in issue #4115, which has PR #4163 open for it, so I'll go ahead and close this.
I probably could have done a better job of writing #4115, to include search terms like PushNotificationIOS, to make it easier for you to find; sorry about that. 🙂
What is this issue for?
The core
PushNotificationIOS
module has been depreciated from React-Native. We can see this error in the console window when we start the server.This is where official RN docs mention this.
Steps to solve this issue
We will use the react-native-community/push-notification-ios package. Instead of using PushNotificationIOS from react-native we will use the same from the above-mentioned package in /src/notification/index.js. The docs of the package mention the use of the PushNotificationIOS.
The text was updated successfully, but these errors were encountered: