* Eliminate static library and framework targets * Migrate all testing infrastructure and code to Tests/ * Nest CocoaPods setup for testing under Tests/ * Remove explicit dependencies from shared schemes
16 lines
481 B
Text
16 lines
481 B
Text
//
|
|
// Prefix header for all source files of the 'AFNetworking' target in the 'AFNetworking' project
|
|
//
|
|
|
|
#ifdef __OBJC__
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <Availability.h>
|
|
#if __IPHONE_OS_VERSION_MIN_REQUIRED
|
|
#import <SystemConfiguration/SystemConfiguration.h>
|
|
#import <MobileCoreServices/MobileCoreServices.h>
|
|
#else
|
|
#import <SystemConfiguration/SystemConfiguration.h>
|
|
#import <CoreServices/CoreServices.h>
|
|
#endif
|
|
#endif
|