-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
72 lines (67 loc) · 1.46 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
67
68
69
70
71
72
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
targetsArray = [
'ShowMeCode',
'RXSwiftDemo',
'01ReactiveProgram',
'02Observable',
'03Observer',
'04Subjects\Variables',
'05buffer、map、compactMap、scan',
'06filter、take、skip',
'07amb、takeWhile、skipWhile',
'08startWith、merge、zip',
'09toArray、reduce、concat',
'10connect、publish、replay、multicast',
'11delay、materialize、timeout',
'12Error Handling Operators',
'13Single、Completable、Maybe',
'14Driver',
'15ControlProperty、 ControlEvent',
'16subscribeOn、observeOn',
'17UILabel',
'18UITextField、UITextView',
'19UIButton、UIBarButtonItem',
'20UISwitch、UISegmentedControl',
'21UIActivityIndicatorView、UIApplication',
'22UISlider、UIStepper',
'23Bind',
'24UIGestureRecognizer',
'25UIDatePicker',
'26UITableView',
'27UICollectionView1',
'28UIPickerView',
'29unownedweak',
'30URLSession',
'31RxAlamofire',
'32Moya',
'33MBProgressHUD',
'34SwiftNotice',
'35MVVM',
'36MJRefresh',
'37DelegateProxy',
'38sendMessagemethodInvoked',
'39NotificationCenter',
'40KVO',
'41RxFeedback'
]
targetsArray.each do |t|
target t do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for RXSwiftDemo
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
pod "RxGesture"
pod "RxFeedback"
pod "ReactorKit"
pod "ObjectMapper"
pod "RxAlamofire"
pod "Moya"
pod "Result"
pod "MBProgressHUD"
# pod "SwiftNotice"
pod "MJRefresh"
end
end