-
Notifications
You must be signed in to change notification settings - Fork 281
/
Podfile
60 lines (50 loc) · 1.58 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
workspace 'GKPageScrollView.xcworkspace'
target 'ObjcExample' do
platform :ios, '9.0'
project 'ObjcExample/ObjcExample.xcodeproj'
pod 'GKPageScrollView', :path => '../GKPageScrollView'
pod 'GKPageSmoothView', :path => '../GKPageScrollView'
pod 'GKNavigationBar'
pod 'Masonry'
pod 'WMPageController'
pod 'MJRefresh'
pod 'JXCategoryViewExt/SubTitleImage'
pod 'JXCategoryViewExt/Indicator/AlignmentLine'
pod 'VTMagic'
end
target 'SwiftExample' do
platform :ios, '9.0'
project 'SwiftExample/SwiftExample.xcodeproj'
use_frameworks!
pod 'GKPageScrollView/Swift', :path => '../GKPageScrollView'
pod 'GKPageSmoothView/Swift', :path => '../GKPageScrollView'
pod 'GKNavigationBarSwift'
pod 'SnapKit'
pod 'MJRefresh'
pod 'WMPageController'
pod 'JXSegmentedViewExt/Number'
pod 'JXSegmentedViewExt/SubTitleImage'
pod 'JXSegmentedViewExt/Indicator/AlignmentLine'
# pod 'JXCategoryViewExt/SubTitleImage'
# pod 'JXCategoryViewExt/Indicator/AlignmentLine'
pod 'VTMagic'
end
target 'SwiftUIExample' do
platform :ios, '9.0'
project 'SwiftUIExample/SwiftUIExample.xcodeproj'
use_frameworks!
pod 'GKPageScrollView/Swift', :path => '../GKPageScrollView'
pod 'SnapKit'
pod 'JXSegmentedViewExt/Title'
pod 'JXSegmentedViewExt/Indicator/Line'
end
post_install do |installer|
# 消除版本警告
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 9.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
end
end
end
end