-
Notifications
You must be signed in to change notification settings - Fork 45
/
ArtsyPartner-Prefix.pch
44 lines (35 loc) · 1.1 KB
/
ArtsyPartner-Prefix.pch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// Prefix header for all source files of the 'Artsy' target in the 'Artsy' project
//
#ifdef __OBJC__
// Apple
#import <Availability.h>
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
// CocoaPods
#import <CocoaLumberjack/DDLog.h>
#import <ARAnalytics/ARAnalytics.h>
#import <FLKAutoLayout/UIView+FLKAutoLayout.h>
// Language constructs
#import <ObjectiveSugar/ObjectiveSugar.h>
#import <libextobjc/EXTKeyPathCoding.h>
#import <libextobjc/EXTScope.h>
#import "UIDevice+DeviceInfo.h"
// Folio
#import "ARLogging.h"
#import "Constants.h"
#import "Categories.h"
#import "Models.h"
#import "CoreDataManager.h"
#import "ARDispatchManager.h"
#import "ARFolioLabelSubclasses.h"
#ifdef DEBUG
static const NSInteger ARDDLogLevel = LOG_LEVEL_VERBOSE;
#else
static const NSInteger ARDDLogLevel = LOG_LEVEL_WARN;
#endif
static const BOOL ARIsOSSBuild = NO;
#endif