Rushi dave
Rushi dave

Reputation: 164

popup-menu requires RN 0.55+ error in react native

I am using the library "react-native-popup-menu.

npm install [email protected]

version:0.14.0(it's latest)

when I try to run then error showed: this version of popup-menu requires RN 0.55+ but the problem was I install the latest library then why to get an error?

NOTE: added a library in Package.Json file.

Upvotes: 1

Views: 214

Answers (1)

Melih Mucuk
Melih Mucuk

Reputation: 7066

You should install 0.9 version of react-native-popup-menu. Last version is not compatible with your react-native version.

You should install it on your root folder like below:

npm install --save [email protected]

more info: https://github.com/instea/react-native-popup-menu#react-native-compatibility

Upvotes: 3

Related Questions