Im getting the No such Module each time i try to build/build for testing the project on my iMac, but when i run the exact same project (project is on iCloud drive) in my Macbook pro everything seems to be working perfectly.
Both computers are on macOS high sierra
Both Xcode are 9.0.1
My Podfile:
platform :ios, '10.0'
target '___' do
        use_frameworks!
        pod 'Socket.IO-Client-Swift', '~> 12.0.0'
        pod 'SkyFloatingLabelTextField'
        pod 'SwAlert'
        pod 'RealmSwift'
        pod 'ESTabBarController-swift'
end
i've tried:
- deintegrating the project using pod deintegrate
- add the frameworks to the linked frameworks and libraries tab
- deleting the derived data folder
- updating all pods
- moved the project to a folder on the machine (not in icloud drive)
- removing and reinstalling Xcode
- setting the search path to $(SRCROOT)
with further investigations i've found that the derived data folder is missing all *.framework files for my pods so i've copied the derived data folder from my macbook pro (working properly) and move it to the imac, to the surprise it seems to be fixed the No such Module error but a new error is showing up missing required modules: 'SSCZLib', 'SSCommonCrypto'
How Can i fix it ?
PS: im using the .xcworkspace file
