IOS - update structure

I have created an app that uses a third party SDK. I recently had to update my SDK with a newer version. I deleted the framework files from my app folder, copied the new ones, added them to the project, but it looks like Xcode is caching the old version.

I tried Clean, tried to delete Derived Data, nothing works. At the moment it seems the only option available is to recreate the project and import all the source files. Obviously I am not into this. It should be easy and quick to fix this problem.

Any hint?

+3


source to share


2 answers


Cocoa pods are easy to use and install.

CocoaPods is a dependency manager for Objective-C projects. It has thousands of libraries and can help you scale your projects elegantly. Ultimately, its goal is to improve openness and interoperability in third-party open source libraries by creating a more centralized ecosystem.



However, frameworks must be compatible with cocoa pods, which most libraries. You are using terminal to install. This site can give you an idea of โ€‹โ€‹how to install it.

0


source


Fixed. I removed all copies of the old SDK, whether or not they were in my project folder. It seems like Xcode was messing with one of them ... Another mystery.



0


source







All Articles