hank
2019-01-22 ab662912a378edb0878538b40a531434dbbe6792
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
//
//  TwitterCore.h
//
//  Copyright (c) 2015 Twitter. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#if !TARGET_OS_TV
#import <Accounts/Accounts.h>
#endif
#import <CoreData/CoreData.h>
#if !TARGET_OS_TV
#import <Social/Social.h>
#endif
#import "TWTRDefines.h"
 
#if IS_UIKIT_AVAILABLE
#import <UIKit/UIKit.h>
#else
#import <Cocoa/Cocoa.h>
#endif
 
#if __IPHONE_OS_VERSION_MIN_REQUIRED < 80000
#error "TwitterCore doesn't support iOS 7.x and lower. Please, change your minimum deployment target to iOS 8.0"
#endif
 
#import "TWTRAPIErrorCode.h"
#import "TWTRAuthConfig.h"
#import "TWTRAuthSession.h"
#import "TWTRConstants.h"
#import "TWTRCoreOAuthSigning.h"
#import "TWTRGuestSession.h"
#import "TWTRSession.h"
#import "TWTRSessionStore.h"