attempted to initialize an object with an unknown UUID

前端 未结 12 1988
情深已故
情深已故 2021-02-03 22:31

I have taken SVN check-in for a project. Thereafter I have installed pod via terminal. After installation of pod there are few warning stating

    

12条回答
  •  鱼传尺愫
    2021-02-03 23:02

    The reason that happened in my case was some developer updated a pod A while I installed a new pod B (without updated pod A). So when I merged his codes I got the warning.

    An easy way to fix this is to

    1. remove libPods.a from General->Linked Frameworks and libraries 
    2. run `pod install` or `pod update "an-existing-pod"` again. 
    

    For step #2 the purpose is to update .xcodeproj file not to install pod again. If pod is already there cocoapods will just update .xcodeproj file.

提交回复
热议问题