leveldb语义错误,连续从podfile接收错误

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

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

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

取决于我运行的时间,我从其他Podfile中收到一些其他的错误,例如我无法理解的Lottie-iosnanopb

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

ios swift error-handling cocoapods leveldb
1个回答
0
投票

为您的项目位置打开终端,并使用以下命令:-

step 1:- open podfile
step 2:- copy your all pods
step 3:- pod deintegrate
step 4:- pod clean
step 5:- pod uninstall
step 6:- open podfile
step 7:- paste your all pods again
step 8:- pod install
step 9:- exit

它将解决您的问题:)。

© www.soinside.com 2019 - 2024. All rights reserved.