Andrew Fletcher published: 28 October 2020 1 minute read
Updating Realm and RealmSwift from 5.5.x to 10.0.0 brought in the following error
RealmSwift 10.1: framework not found realm-sync
The greatest clue I came across to solving this issue was on the Realm GitHub issues page for realm-sync error. However, updating Cocopods wasn't the only step required to correct this issue. The steps I took were:
- Update Cocopods to v1.10.0 using
sudo gem install cocoapods
- Deintegrate all of your pods
pod deintegrate
- Install the pods from the podfile
pod install
- Quit Xcode and restart
Following all of these steps corrected the framework not found issue. I did attempt steps one and four only. However, once I completed all four steps, then the error was removed.