This repository has been archived by the owner on Dec 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
66 lines (62 loc) · 1.81 KB
/
Podfile
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
target 'NFLSers-iOS' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for NFLSers-iOS
pod 'IQKeyboardManagerSwift'
pod 'Alamofire'
pod 'AlamofireNetworkActivityIndicator'
pod 'SDWebImage'
pod 'SDWebImage/WebP'
pod 'UMengAnalytics-NO-IDFA'
pod 'Cache'
pod 'Toucan'
pod 'SCLAlertView'
pod 'Moya'
pod 'SwiftyJSON'
pod 'AliyunOSSiOS'
pod 'p2.OAuth2'
pod 'ObjectMapper'
pod 'FileKit'
pod 'Sentry'
pod 'SVProgressHUD'
pod 'SwiftyUserDefaults'
pod 'Timepiece'
pod 'SwiftMessages'
pod 'MarkdownView'
pod 'SwiftIconFont'
pod 'OneTimePassword'
pod 'EFQRCode'
pod 'DeviceKit'
pod 'Eureka'
pod 'FCUUID'
pod "ReCaptcha"
pod 'SwiftDate'
pod 'YPImagePicker'
pod 'IGListKit'
pod 'TesseractOCRiOS'
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Owholemodule'
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
if target.name == 'TesseractOCRiOS'
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
header_phase = target.build_phases().select do |phase|
phase.is_a? Xcodeproj::Project::PBXHeadersBuildPhase
end.first
duplicated_header_files = header_phase.files.select do |file|
file.display_name == 'config_auto.h'
end
duplicated_header_files.each do |file|
header_phase.remove_build_file file
end
end
end
end
end