Xcode 10 GM multiple command produce… Pods issues

冷暖自知 提交于 2019-12-02 01:33:34

This looks very similar to this question: Xcode 10 Error: Multiple commands produce

Here is a link to the most voted answer https://stackoverflow.com/a/50719379

If this doesn't work, you may have a Pod dependency cycle for that pod.

In my case, there was such an issue.

In my pod project the target Lock had a target dependency to the Lock-Auth0 framework so I had to remove the line for "Lock-Auth0" for the Lock target by going to Build Settings > Target Dependencies > & Copy Bundle Resources (this will be undone if you run pod install again) .

I took a look at the Lock.podspec and realized that the dependency has been removed on the latest version so upgrading to the most recent version of the Pod will be my next step.

Hope this helps.

here is a screenshot of my error

I had same problem with Xcode 10 GM. In my case Cocoapods not found. So, require to re-installed it.

  • To find if Cocoapods is installed or not run command on terminal. pod --version
  • if the result is Not Found Pods is not installed. So, run command on terminal $ sudo gem install cocoapods --source http://rubygems.org

Hope it's helps to you...

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!