React-Native
React-Native copied to clipboard
RNCWebview conflict patch
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": "*"
},
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.
yeah this have a conflict with the root react-native-webview package. please approve this