forked from wordpress-mobile/WordPress-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
134 lines (102 loc) · 3.32 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
source 'https://github.com/CocoaPods/Specs.git'
inhibit_all_warnings!
use_frameworks!
platform :ios, '10.0'
workspace 'WordPress.xcworkspace'
## Pods shared between all the targets
def shared_with_all_pods
pod 'CocoaLumberjack', '3.2.1'
pod 'FormatterKit/TimeIntervalFormatter', '1.8.2'
pod 'NSObject-SafeExpectations', '0.0.2'
pod 'UIDeviceIdentifier', '~> 0.4'
end
def shared_with_networking_pods
pod 'AFNetworking', '3.1.0'
pod 'wpxmlrpc', '0.8.3'
pod 'Alamofire', '4.6.0'
end
def shared_test_pods
pod 'OHHTTPStubs', '6.1.0'
pod 'OHHTTPStubs/Swift', '6.1.0'
pod 'OCMock', '~> 3.4'
end
target 'WordPress' do
project 'WordPress/WordPress.xcodeproj'
shared_with_all_pods
shared_with_networking_pods
# ---------------------
# Third party libraries
# ---------------------
pod '1PasswordExtension', '1.8.5'
pod 'HockeySDK', '5.1.1', :configurations => ['Release-Internal', 'Release-Alpha']
pod 'MRProgress', '0.8.3'
pod 'Reachability', '3.2'
pod 'SVProgressHUD', '2.2.2'
pod 'Crashlytics', '3.9.3'
pod 'BuddyBuildSDK', '1.0.17', :configurations => ['Release-Alpha']
pod 'FLAnimatedImage', '1.0.12'
pod 'MGSwipeTableCell', '1.6.6'
pod 'lottie-ios', '1.5.1'
pod 'Starscream', '3.0.3'
pod 'GoogleSignIn', '4.1.1'
# --------------------
# WordPress components
# --------------------
pod 'Automattic-Tracks-iOS', :git => 'https://github.com/Automattic/Automattic-Tracks-iOS.git', :tag => '0.2.1'
pod 'Gridicons', '0.14'
pod 'NSURL+IDN', '0.3'
pod 'WPMediaPicker', :git => 'https://github.com/wordpress-mobile/MediaPicker-iOS.git', :commit => 'a57ed6de4d5f8cec7c20712c5dae879e273ceed5'
pod 'WordPress-Aztec-iOS', :git => 'https://github.com/wordpress-mobile/AztecEditor-iOS.git', :commit =>'1b9e6398f054f8726cf40de9e9a2ace753804502'
target 'WordPressTest' do
inherit! :search_paths
shared_test_pods
pod 'Specta', '1.0.7'
pod 'Expecta', '1.0.6'
pod 'Nimble', '~> 7.0.3'
end
target 'WordPressShareExtension' do
inherit! :search_paths
shared_with_all_pods
shared_with_networking_pods
pod 'WordPress-Aztec-iOS', :git => 'https://github.com/wordpress-mobile/AztecEditor-iOS.git', :commit =>'1b9e6398f054f8726cf40de9e9a2ace753804502'
end
target 'WordPressDraftActionExtension' do
inherit! :search_paths
shared_with_all_pods
shared_with_networking_pods
pod 'WordPress-Aztec-iOS', :git => 'https://github.com/wordpress-mobile/AztecEditor-iOS.git', :commit =>'1b9e6398f054f8726cf40de9e9a2ace753804502'
end
target 'WordPressTodayWidget' do
inherit! :search_paths
shared_with_all_pods
shared_with_networking_pods
end
end
target 'WordPressComStatsiOS' do
project 'WordPressComStatsiOS/WordPressComStatsiOS.xcodeproj'
shared_with_all_pods
shared_with_networking_pods
target 'WordPressComStatsiOSTests' do
inherit! :search_paths
shared_test_pods
end
end
target 'WordPressKit' do
project 'WordPressKit/WordPressKit.xcodeproj'
shared_with_networking_pods
shared_with_all_pods
target 'WordPressKitTests' do
inherit! :search_paths
shared_test_pods
end
end
target 'WordPressShared' do
project 'WordPressShared/WordPressShared.xcodeproj'
shared_with_all_pods
target 'WordPressSharedTests' do
inherit! :search_paths
shared_test_pods
pod 'Specta', '1.0.7'
pod 'Expecta', '1.0.6'
end
end