Reputation: 1222
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:
$(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
Upvotes: 1
Views: 9084
Reputation: 1222
I solved the problem by building my pods-projectname
file separately
build
from the list on the leftpods-projectname
pods-projectname
file.Upvotes: 6