hank
2019-01-22 ab662912a378edb0878538b40a531434dbbe6792
commit | author | age
a0a843 1 //
H 2 //  TwitterCore.h
3 //
4 //  Copyright (c) 2015 Twitter. All rights reserved.
5 //
6
7 #import <Foundation/Foundation.h>
8 #if !TARGET_OS_TV
9 #import <Accounts/Accounts.h>
10 #endif
11 #import <CoreData/CoreData.h>
12 #if !TARGET_OS_TV
13 #import <Social/Social.h>
14 #endif
15 #import "TWTRDefines.h"
16
17 #if IS_UIKIT_AVAILABLE
18 #import <UIKit/UIKit.h>
19 #else
20 #import <Cocoa/Cocoa.h>
21 #endif
22
23 #if __IPHONE_OS_VERSION_MIN_REQUIRED < 80000
24 #error "TwitterCore doesn't support iOS 7.x and lower. Please, change your minimum deployment target to iOS 8.0"
25 #endif
26
27 #import "TWTRAPIErrorCode.h"
28 #import "TWTRAuthConfig.h"
29 #import "TWTRAuthSession.h"
30 #import "TWTRConstants.h"
31 #import "TWTRCoreOAuthSigning.h"
32 #import "TWTRGuestSession.h"
33 #import "TWTRSession.h"
34 #import "TWTRSessionStore.h"