Missing cocoa module assembly phases

Let's make a mistake, I had to completely remove cocoa pods from my Xcode project and add them. Thus, I also removed the 2 phases of the "Copy Pods Resources" and "Check Pes Manifest.lock" builds. After I added cocoa pods, these 2 phases of the build were still missing even from what I added to the online version of โ€œpod installโ€ to add them. How to return them?

+6
source share
3 answers

After uninstalling podfile, try reinstalling cocoapods using the following commands

sudo gem install cocoapods -> touch podfile -> open podfile -> save your pod -> pod install. After the above steps, check your goal โ†’ build phase.

0
source

The answer of iOS (which below) does not work for me. I do not know how to fix it ((

the problem is cocoapods dependency, has some static resources that are not added to the final .app file after build. The add is written in the bash script created by cocoapods

0
source

Just follow the same problem and find a solution for yourself. Sorry for such a late reply, but hope this can help someone else.

There is an implemented Ruby game from a guy from the Cocoapods team to disintegrate Cocoapods from the project. You can find it here. If you de-integrate Cocoapods from your project using this gem and then run pod install , you will see that all phases of Cocoapods build are added to your project.

0
source

Source: https://habr.com/ru/post/973274/


All Articles