5

尝试在 iOS 和 Android 中创建构建。应用程序正在使用 react-native-pdf 库。获取构建错误

错误:无法从 /Users/runner/work/1/s/node_modules/react-native-pdf/index.js 解析模块 react-native-blob-util:在项目或在这些目录中: node_modules ../../node_modules

我们尝试将 react-native-blob-util 添加到 package.json。但是现在由于 react-native-blob-util 在 iOS 中出现重复符号构建错误

“react-native-blob-util”:“^0.13.16”,“react-native-pdf”:“^6.4.0”

4

1 回答 1

6

我也得到了这个案例,最好的方法是

  1. 卸载 react-native-blob-util 和 react-native-pdf
npm uninstall react-native-blob-util
npm uninstall react-native-pdf
  1. 将 react-native-pdf 版本安装到 6.2.0

npm install react-native-pdf@6.2.0

  1. 安装 rn-fetch-blob,或者如果你已经有

npm i rn-fetch-blob

  1. npm install
于 2022-01-14T10:20:10.607 回答