Flutter 在iOS虚拟机真机测试中,报错

Using `ARCHS` setting to build architectures of target `Pods-Runner`: (``)

第一步

打开cmd cd 进入Runner文件中podfile文件同级;

第二步

pod install

查看哪个库出了问题,我是Error installing libwebp


第三步

pod repo


复制trunk中的path,在cmd中继续输入

open /Users/*****/.cocoapods/repos/trunk <==你复制的path

找到文件夹位置,Specs => 1 => 9 => 2 =>你要找的库 =>对应的问题版本,找到

libwebp.podspec.json文件


把git 地址更改为:

https://github.com/webmproject/libwebp.git

保存,关闭

第四步

回到终端,

pod install

应该就可以了

如果还不可以试试另一个path,同样的修改方法

你可能感兴趣的:(Flutter 在iOS虚拟机真机测试中,报错)