I have a Podfile and I installed my frameworks from there. Now, I need to add one framework manually, to my project and on adding it gives me the next error:
duplicate symbol _OBJC_CLASS_$_PodsDummy_Pods in:
my_project_path/Appodeal.framework/Appodeal(Pods-dummy.o)
/Users/username/Library/Developer/Xcode/DerivedData/My-app-bamupbgzptvzbygckzrxausporaj/Build/Products/Debug-iphonesimulator/Pods.framework/Pods(Pods-dummy.o)
duplicate symbol _OBJC_METACLASS_$_PodsDummy_Pods in:
my_project_path/Appodeal.framework/Appodeal(Pods-dummy.o)
/Users/username/Library/Developer/Xcode/DerivedData/My-app-bamupbgzptvzbygckzrxausporaj/Build/Products/Debug-iphonesimulator/Pods.framework/Pods(Pods-dummy.o)
ld: 2 duplicate symbols for architecture x86_64
After adding it I cannot compile my project because of this error. How can fix this error?
My Podfile looks like:
use_frameworks!
pod 'RealmSwift'
pod 'Alamofire', '~> 3.0'
pod 'SwiftyJSON'
Any suggestions?