反应本机博览会图像选择器错误

问题描述 投票:0回答:2

当我尝试添加插件时 (

"plugins": [ [ "expo-image-picker", { "cameraPermission": "The app accesses your camera to let you add new places" } ] ]
),我收到错误plugin error

然后我尝试安装expo“expo install expo-image-picker”,但出现另一个错误cannot find module error所以我卡住了..任何人都可以帮忙吗?

reactjs expo native
2个回答
0
投票

我运行“npm install expo-image-picker”而不是“expo install expo image picker”然后问题就解决了


0
投票

enter image description here

我明白了。

由于使用 React Native Firebase,我的项目工作在自定义本机代码模型上

这是我的步骤:

  1. npx expo 安装 expo-image-picker
  2. 配置 app.json 插件(运行时出现错误)
  3. eas build --profiledevelopment--platform android(构建本地版本)
  4. eas build:run -p android(安装到 qemu 系统;选择构建版本 ID)
  5. 虽然在 app.json 中没有发现错误,但它可以工作
© www.soinside.com 2019 - 2024. All rights reserved.