I\'m currently coding in Swift, and I\'ve got an error:
No such module Social
But I don\'t understand, because the module is in
There are several potential misconfigurations the issue can arise for,
.xcworkspace
but not .xcodeproj
file. Also make sure you have build Social
first before you build TriviaApp
.TriviaApp
s deployment target is set to 9.0
, Social
s deployment target also need to be set to 9.0
.TriviaApp
) and your used framework (Social
) have same set of configurations. i.e. If your Project has three configurations, Debug
, Release
, ReleasePremium
than your Social framework also need to have three configurations Debug
, Release
, ReleasePremium
. Also make sure that the archive configuration is set same for both TriviaApp
and Social
. i.e. if your TriviaApp
s archive scheme is set to ReleasePremium
, your Social
s archive scheme also need to be set into ReleasePremium
.Social
in each .swift
files when its already added in the Bridging-Header.h
.#use_frameworks!
into use_frameworks!
from you Podfile
. Sometime re installing pod works if Social
has any dependency on pods.