hank
2019-01-22 ab662912a378edb0878538b40a531434dbbe6792
commit | author | age
655e66 1 /*
H 2  * Copyright (C) 2017 Twitter, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
a0a843 17
H 18 #import <AVFoundation/AVFoundation.h>
19 #import <Accounts/Accounts.h>
20 #import <CoreMedia/CoreMedia.h>
21 #import <Foundation/Foundation.h>
22 #import <TwitterCore/TwitterCore.h>
23 #import <UIKit/UIKit.h>
24
25 #if __IPHONE_OS_VERSION_MIN_REQUIRED < 90000
26 #error "TwitterKit doesn't support iOS 8.x and lower. Please, change your minimum deployment target to iOS 9.0"
27 #endif
28
29 #import "TWTRAPIClient.h"
30 #import "TWTRCollectionTimelineDataSource.h"
31 #import "TWTRComposer.h"
32 #import "TWTRComposerViewController.h"
33 #import "TWTRJSONConvertible.h"
34 #import "TWTRListTimelineDataSource.h"
35 #import "TWTRLogInButton.h"
36 #import "TWTRMediaEntitySize.h"
37 #import "TWTRMoPubAdConfiguration.h"
38 #import "TWTRMoPubNativeAdContainerView.h"
39 #import "TWTRNotificationConstants.h"
40 #import "TWTROAuthSigning.h"
41 #import "TWTRSearchTimelineDataSource.h"
42 #import "TWTRTimelineCursor.h"
43 #import "TWTRTimelineDataSource.h"
44 #import "TWTRTimelineDelegate.h"
45 #import "TWTRTimelineFilter.h"
46 #import "TWTRTimelineType.h"
47 #import "TWTRTimelineViewController.h"
48 #import "TWTRTweet.h"
49 #import "TWTRTweetCashtagEntity.h"
50 #import "TWTRTweetEntity.h"
51 #import "TWTRTweetHashtagEntity.h"
52 #import "TWTRTweetTableViewCell.h"
53 #import "TWTRTweetUrlEntity.h"
54 #import "TWTRTweetUserMentionEntity.h"
55 #import "TWTRTweetView.h"
56 #import "TWTRTweetViewDelegate.h"
655e66 57 #import "TWTRTwitter.h"
a0a843 58 #import "TWTRUser.h"
H 59 #import "TWTRUserTimelineDataSource.h"
60 #import "TWTRVideoMetaData.h"
655e66 61 #import "TWTRVideoPlaybackState.h"