请问如果是第三方的RN组件,该如何配置依赖?例如:react-native-webview组件
来源:16-5 React Native 混合开发实战(Android篇)-3【解锁新的开发方式】
慕无忌045562
2019-07-23
我在rn中下载了react-native-webview组件,
在build.gradle文件中allprojects/repositories节点添加了maven:
maven{ url “$rootDir/…/node_modules/react-native-webview/android” }
也在app/build.gradle文件中dependencies节点添加了依赖
implementation ':react-native-webview’
但是,没有识别成功
写回答
1回答
-
CrazyCodeBoy
2019-07-23
不需要这么复杂啊,按照https://github.com/react-native-community/react-native-webview
上的安装说明安装就可以了:
如果你的项目支持了AndroidX:
yarn add react-native-webview@androidx
否则通过:
yarn add react-native-webview
00
相似问题