Junior
Where do you store CocoaPods libraries in your project?
sobes.tech AI
Answer from AI
Usually, in the Pods directory, which is automatically created in the root of the project after the first dependency installation (pod install).
Example structure:
YourProject/
├── YourProject.xcodeproj/
├── YourProject/
├── Podfile
├── Podfile.lock
└── Pods/ // Contains all installed libraries
├── Headers/
├── Local Podspecs/
├── Manifest.lock
├── Pods.xcodeproj // CocoaPods project with all libraries
├── <Library1>/
├── <Library2>/
└── ...
The Pods directory is usually added to .gitignore to avoid tracking its changes in version control, as it can be easily recreated with pod install.