React-Native icon indicating copy to clipboard operation
React-Native copied to clipboard

RNCWebview conflict patch

Open victorighalo opened this issue 4 years ago • 2 comments

There is a conflict with React Native Webview when a project has it installed is causes a conflict

Solution is to Move

  "dependencies": {
    "react-native-webview": ">=6.0.2"
  },

to

  "peerDependencies": {
    "react-native-webview": "*"
  },

victorighalo avatar Feb 27 '22 22:02 victorighalo

Hi @victorighalo, this is great, we currently have the library only tested and verified to work correctly on WebView 6.0.2 and above, an adjustment you may need to make is to change the version required to the following.

  "peerDependencies": {
    "react-native-webview": ">=6.0.2"
  },

Once that's done we should be good to go.

thecodecafe avatar Apr 12 '22 09:04 thecodecafe

yeah this have a conflict with the root react-native-webview package. please approve this

stephenson080 avatar Jan 17 '23 22:01 stephenson080