-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
executable file
·43 lines (40 loc) · 1 KB
/
Podfile
File metadata and controls
executable file
·43 lines (40 loc) · 1 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
platform:ios,'11.0'
inhibit_all_warnings!
use_modular_headers!
def pods
pod 'SnapKit'
pod 'Alamofire'
pod 'ObjectMapper'
pod 'AlamofireObjectMapper'
pod 'Ji'
pod 'Kingfisher', '~> 4.10.0'
pod 'KeychainSwift'
pod 'KVOController'
pod 'YYText'
pod 'SVProgressHUD'
pod 'MJRefresh', '~> 3.1.15.7'
pod 'CXSwipeGestureRecognizer'
pod 'Google-Mobile-Ads-SDK'
pod 'Shimmer'
pod 'FDFullscreenPopGesture'
pod 'Moya/RxSwift'
pod 'SwiftyJSON', '~> 4.3'
pod 'DeviceKit'
end
target 'YuanCommunityV2ex' do
pods
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'Ji' or target.name == 'Moya' or target.name == 'Result'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.2'
end
end
if target.name == 'DrawerController'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end
end
end