After I have installed cocoa pods in my project, the project size has increased from 200 kb to 515 mb. Any suggestions to find the mistake and reduce the size is most appreciated.
Thanks
After I have installed cocoa pods in my project, the project size has increased from 200 kb to 515 mb. Any suggestions to find the mistake and reduce the size is most appreciated.
Thanks
If you have a 'hell of a lot of frameworks' - are they all necessary? The pods in your podfile add to the size of your project. Remove unecessary pods from the podfile, call pod install
and your project size should decrease.
I think I had pulled the whole master repo in my project location, which resulted in the specs folder containing the whole frameworks with all the versions. And, that was something occupying so much of space.
To resolve the same, I removed the pod from my project completely with the reference of the answer mentioned here :
How to remove CocoaPods from a project?
Then, I set up the pods again into my project with the following reference :
And now everything looks fine and as expected.
Thanks!