npm react-native-pdf Expo build failure

x759pob2  于 12个月前  发布在  React
关注(0)|答案(1)|浏览(146)

尝试安装react-native-pdf . i创建了一个新的构建并获得了一个eas.json文件,但i然后得到以下错误

`Failed to resolve plugin for module "Failed to resolve plugin for module "@config-plugins/react-native-blob-util" relative to "PROJECT DIRECTORY ADDRESS"
    Error: build command failed.

字符串
我已经复制并粘贴了以下插件到我的app.json以及安装botht的react-native-pdfblob包:

"plugins": [
      "@config-plugins/react-native-blob-util",
      "@config-plugins/react-native-pdf"
    ]

yyhrrdl8

yyhrrdl81#

首先删除节点模块并清除expo. rm -rf node_modules上的该高速缓存。yarn安装expo start -c现在您已经清除了该高速缓存,停止服务器。在app.json文件中添加react-native-pdf react-native-blob-util @ react-plugins/react-native-pdf @ react-plugins/react-native-blob-util在expo下添加插件。

{
  "expo": {
    "plugins": [
      "@config-plugins/react-native-blob-util",
      "@config-plugins/react-native-pdf"
    ]
  }
}

字符串
现在假设你没有生成eas.json文件,因为构建失败了。你可以这样做:- eas build:configure并按照步骤操作。现在生成了eas.json文件,在开发内部的构建下添加模拟器为true,类似于下面的内容

"ios": {
    "simulator": true
  }


这是在模拟器上运行它。

相关问题