2

安装 pod 时出现以下错误。

[!] The name of the given podspec 'file_picker' doesn't match the expected one 'gx_file_picker'

我尝试将“pubspec.yaml”中的文件名从 gx_file_picker 更改为 file_picker,但这似乎不起作用。进一步的研究也没有成效。

知道如何解决这个问题吗?

4

1 回答 1

3

我遇到了同样的问题,我发现gx_file_picker/ios/gx_filepicker.podspec:

  s.name             = 'file_picker'

必须改为:

  s.name             = 'gx_file_picker'

更改后这样做不会造成任何伤害:

  1. 进入ios文件夹
  2. 删除 PodFile.lock 文件
  3. rm -rf 豆荚
  4. pod 缓存清理 --all
  5. 吊舱解体
  6. 吊舱设置
  7. 吊舱安装

现在一切都在我的项目中工作。

于 2021-07-03T10:49:06.647 回答