Working on my iPhone app and trying to build for debugging, and I get "106 duplicate characters for armv7 architecture"?
I am using the .workspace file because I am trying to use CocoaPods. If I do not use .workspace and instead use .xcodeproj, I do not get an error, but then I lose -lPods.
In my project, I have the following goals in the Project Navigator.
Pods (blue icon) MyProject (blue icon) Restkit.xcodeproj (blue icon) ... all my files
The problem is that Restkit refers to "AFHTTPClient.h" and all other autofocus code, but I enabled it through CocoaPods. I tried to delete the AFNetworking folder from the RestKit library, but apparently the Restkit library cannot find the version of the AFNetworking subsystem?
Is there a way to force RestKit to use the version of Pods? If not, how can I remove the removal of Pods from my project?
source share