我试图在模拟器中运行我的应用程序,突然间我收到了来自leveldb-library podfile的错误,我认为我从未碰过。

错误来自文件中的一行代码,并显示No member named 'NoBarrier_Store' in 'std::__1::atomic<unsigned long>'我不知道该怎么做,因为我认为从未接触过任何此Podfile。
我所做的并且可能与该错误有关的唯一事情是安装了不赞成使用的库。它被称为ImagePicker,也许该安装对其他podFiles有一些干扰。但是除此之外,我认为没有任何影响力。

根据运行时间的不同,我还会从其他Podfile中收到一些其他我无法理解的错误,例如 Lottie-ios nanopb

我现在不知道该怎么办,我已经尝试过从终端安装Pod,但没有任何更改...
感谢任何可以提供帮助的人。

最佳答案

打开终端以查看项目位置,并使用以下命令:

step 1:- open podfile
step 2:- copy your all pods and remove all pods and save the file
step 3:- pod install
step 4:- open podfile
step 5:- paste your all pods again and save the file
step 6:- pod install
step 7:- exit

它将解决您的问题:)。

关于ios - leveldb语义错误,连续从podfile接收错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60237586/

10-10 21:07