Is it possible to configure push IOS notifications on Linux (without Xcode)
Question
Hi, is it possible to implement IOS push notifications (background) working on linux? As it is mentioned in react-native-push-notification-ios manual it is neccessary to use npx pod-install command which return me error CocoaPods is only supported on darwin machines and also in the next steps there is need to use Xcode.
Is there any way to implement IOS push notifications not having Mac?
Hi @sossnowski Cocoapods only works on MacOS. You can't compile the iOS project on Linux (or maybe with Docker-OSX). So you don't need this step, and you can code in JS the iOS part. Regards
So I only should download this package npm i @react-native-community/push-notification-ios and implement handling notifications in JS and do not care about configurating it because RN will do it?
You can skip the "pod install" step, but configure the AppDelegate if you plan to support iOS in the future.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Thank you for your contributions.