-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathPodfile
More file actions
55 lines (47 loc) · 1.17 KB
/
Podfile
File metadata and controls
55 lines (47 loc) · 1.17 KB
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
# frozen_string_literal: true
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
source 'https://github.com/CocoaPods/Specs.git'
#source 'https://cdn.cocoapods.org/'
inhibit_all_warnings!
#use_frameworks!
def common_pods
pod 'YCBase'
pod 'YCEasyTool'
pod 'SAMKeychain'
pod 'OpenSSL-Universal', '1.1.1500'
pod 'CocoaLumberjack'
pod 'SocketRocket'
pod 'Reachability', '~> 3.2'
pod 'MJExtension', '~>3.0.13'
pod 'FileMD5Hash'
pod 'AFNetworking', '~> 4.0'
pod 'JSONModel', '~> 1.2'
pod 'ISO8601', '~> 0.6'
end
target 'EulixSpace' do
common_pods
pod 'SDWebImage', '5.12.5'
pod 'YYModel'
pod 'YYCache'
pod 'FLAnimatedImage', '~> 1.0'
pod 'Masonry'
pod 'WCDB'
pod 'SVProgressHUD'
pod 'SDCycleScrollView', '>= 1.82'
pod 'IQKeyboardManager'
pod 'SSZipArchive', '2.2.3'
pod 'GKPhotoBrowser', '2.4.1'
pod "GCDWebServer", "~> 3.0"
pod 'lottie-ios'
end
target 'EulixSpaceTests' do
common_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
end
end
end