-
Notifications
You must be signed in to change notification settings - Fork 35
Broken Build #40
Comments
Hi @kolpanic. I know this has been an issue since I pushed a bunch of commits late last week, and I'm sorry I haven't been able to resolve it yet. This change was made to support interoperability between Objective-C and Swift when using CocoaPods and the I'll see what I can do to resolve this in a manner that allows both use cases. |
@bdbergeron Thanks |
@kolpanic Try changing the |
@bdbergeron Thanks, but that didn't work. I get As I mentioned, we build AFNetworking into a framework, but it's not called AFNetworking. The framework includes BDBOAuth1Manager, along with the rest of our shared code. |
@bdbergeron I don't use CocoaPods, but I assume the Is there a C preprocessor directive that can conditionally check if it's being built with #if COCOAPODS_USE_FRAMEWORKS
#import <AFNetworking/AFHTTPRequestOperationManager.h>
#else
#import "AFHTTPRequestOperationManager.h"
#endif |
@bdbergeron Any progress on this? |
@bdbergeron I forked and changed the |
Commit 8635b7b breaks our build. Doesn't this apply only if you build AFNetworking itself into a standalone framework called "AFNetworking"?
(We build BDBOAuth1Manager & AFNetworking into an OS X framework.)
The text was updated successfully, but these errors were encountered: