3

1 - I have tried update cocoapods and re-install pod for my project many times. But Manifest.lock still looks like having a problem. My app works well. Can It be affect something later? How Can I solve it?

2 - In addition Pods_Projectname.framework has red title in Xcode navigator. I continue developing my app but these things worried me, I don't know what happened. I couldn't find solution.

Manifest file error

Still continue problem, In addition looks below problems:

Build Phases - Embed Pods Frameworks:

"${SRCROOT}/Pods/Target Support Files/Pods-ProjectName/Pods-ProjectName-frameworks.sh"

Build Phases - Copy Pods Resources:

"${SRCROOT}/Pods/Target Support Files/Pods-ProjectName/Pods-ProjectName-resources.sh"
iamburak
  • 3,508
  • 4
  • 34
  • 65
  • Have you tried to turn it off and on again ?? To uninstall CocoaPod : follow this link http://superuser.com/a/686319 To reinstall it follow the other answer. PS: it actually solve this bug for me, but I can't be sure it will work for you – kholl May 25 '16 at 09:40
  • See https://stackoverflow.com/a/65783259/5175709 – mfaani Jan 18 '21 at 23:39

3 Answers3

4

Try these steps

  1. Quit Xcode
  2. Clear /YourUserHomeFolder/Library/Developer/Xcode/DerivedData
  3. Remove Pods folder and Podfile.lock file
  4. (in terminal)$ gem install cocoapods
  5. (in terminal in your project)$ pod install
ale_stro
  • 806
  • 10
  • 23
2
  1. Go to project folder.
  2. Find Pods folder and delete everything that you have there including Manifest.lock.
  3. Go back to project folder and delete Podfile.lock.
  4. Go to terminal and run pod install.
allenski
  • 1,652
  • 4
  • 23
  • 39
0

Do not delete full Pod folder,I was facing this problem. In my Pod folder, there was no manifest.lock file so I just run these commands:

  1. pod update

then

  1. pod install
  • If you have a new question, please ask it by clicking the [Ask Question](https://stackoverflow.com/questions/ask) button. Include a link to this question if it helps provide context. - [From Review](/review/late-answers/32416553) – Iva Aug 11 '22 at 07:46