react-native-queue
react-native-queue copied to clipboard
unable to integrate in react-native version > 60.4
i am trying to add this library in react native version 60.4 for android but it is giving error. The error is related to realm and when i link the react-native link realm then it says node_package does not have realm. please resolve this issue.
I fixed this by installing realm
as a dependency separately and linking.
yeah with
- npm install realm
- react-native link realm
info Linking "realm" iOS dependency info iOS module "realm" has been successfully linked info Android module "realm" is already linked
Ticket can be closed I guess.
Note, realm only supports Node 8 & Node 10 right now. Switching to node 10 for my project fixed an install issue on iOS.
Further to this, if using pods on iOS, running "yarn install" or "yarn add" breaks the pod install for realm. You need to clear out the pod cache and reinstall to make it work again.
Also, no need to manually link when auto linking is available.
Same happens for me using RN 0.61.5
@sgeier Did you install any specific version of Realm or latest one ?
@sshanzel Did you able to solve it ?