-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathPodfile.txt
112 lines (92 loc) · 3.57 KB
/
Podfile.txt
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
platform :ios, '10.0'
inhibit_all_warnings!
source 'https://github.com/CocoaPods/Specs.git'
require './vite_pod'
targetArray = ['Vite']
targetArray.each do |t|
target t do
use_frameworks!
#vite kit
vite_community_git = 'https://github.com/vitelabs/vite-community-ios.git'
vite_community_commit = '5b84a9fcb0825d174ea5e21c2d515f6b28e6fed4'
vite_business_git = 'https://github.com/vitelabs/vite-business-ios.git'
vite_business_commit = '05307d9c50a8f31ac1fde1f118e4c7896973995a'
if t == 'Vite-official'
vite_pod 'ViteCommunity', :git => vite_community_git, :commit => vite_community_commit, :subspecs => ['Official']
vite_pod 'ViteBusiness', :git => vite_business_git, :commit => vite_business_commit, :subspecs => ['Official']
elsif t == 'Vite-test'
vite_pod 'ViteCommunity', :git => vite_community_git, :commit => vite_community_commit, :subspecs => ['Test']
vite_pod 'ViteBusiness', :git => vite_business_git, :commit => vite_business_commit, :subspecs => ['Test']
elsif t == 'Vite-enterprise'
vite_pod 'ViteCommunity', :git => vite_community_git, :commit => vite_community_commit, :subspecs => ['Enterprise']
vite_pod 'ViteBusiness', :git => vite_business_git, :commit => vite_business_commit, :subspecs => ['Enterprise']
else
vite_pod 'ViteBusiness', :git => vite_business_git, :commit => vite_business_commit
end
vite_pod 'ViteUtils', :git => 'https://github.com/vitelabs/vite-utils-ios.git', :commit => '68ccb4840e8b4eab141306e27ffa555352b1b190'
vite_pod 'ViteWallet', :git => 'https://github.com/vitelabs/vite-wallet-ios.git', :commit => 'fbb842cdf99e101fd9659016825739f63ccecc03'
vite_pod 'Vite_HDWalletKit', '1.2.0'
pod 'SnapKit', '~> 4.0.0'
pod 'BigInt', '~> 3.0'
pod 'R.swift', '5.0.0.alpha.3'
pod 'JSONRPCKit', '~> 3.0.0'
pod 'PromiseKit', '~> 6.0'
pod 'APIKit'
pod 'ObjectMapper'
pod 'MBProgressHUD'
pod 'KeychainSwift'
pod 'Moya'
pod 'MJRefresh'
pod 'KMNavigationBarTransition'
pod 'XCGLogger', '~> 6.1.0'
pod 'pop', '~> 1.0'
pod 'DACircularProgress', '2.3.1'
pod 'Kingfisher', '~> 4.0'
pod 'NYXImagesKit', '2.3'
#request
pod 'SwiftyJSON'
#statistics
pod 'BaiduMobStat'
#UI Control
pod 'ActionSheetPicker-3.0'
pod 'MBProgressHUD'
pod 'Toast-Swift', '~> 4.0.1'
pod 'RazzleDazzle'
pod 'CHIPageControl'
#table static form
pod 'Eureka', '~> 4.3.0'
#RX
pod 'RxSwift', '~> 4.0'
pod 'RxCocoa'
pod 'RxDataSources', '~> 3.0'
pod 'NSObject+Rx'
pod 'RxOptional'
pod 'RxGesture'
pod 'Then'
pod 'Action'
pod 'ReusableKit', '~> 2.1.0'
pod 'ReactorKit'
#code review
pod 'SwiftLint'
#crash
pod 'Fabric'
pod 'Crashlytics'
pod 'MLeaksFinder', :configurations => ['Debug']
pod 'FSPagerView'
pod 'DNSPageView'
if t == 'Vite'
target 'ViteTests' do
inherit! :search_paths
end
end
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['RazzleDazzle', 'JSONRPCKit', 'APIKit'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end
end