forked from wordpress-mobile/WordPress-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
100 lines (87 loc) · 3.49 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
source 'https://github.com/CocoaPods/Specs.git'
project 'WordPress/WordPress.xcodeproj'
install! 'cocoapods',
:deterministic_uuids => false
inhibit_all_warnings!
use_frameworks!
platform :ios, '9.0'
abstract_target 'WordPress_Base' do
pod 'WordPress-iOS-Shared', '0.6.3'
## This pod is only being included to support the share extension ATM - https://github.com/wordpress-mobile/WordPress-iOS/issues/5081
pod 'WordPressComKit', '0.0.5'
pod 'WordPressCom-Stats-iOS', '0.8.0'
target 'WordPress' do
# ---------------------
# Third party libraries
# ---------------------
pod '1PasswordExtension', '1.8.1'
pod 'AFNetworking', '3.1.0'
pod 'CocoaLumberjack', '~> 2.2.0'
pod 'DTCoreText', '1.6.16'
pod 'FormatterKit', '~> 1.8.1'
pod 'Helpshift', '~> 5.7.1'
pod 'HockeySDK', '~> 3.8.0', :configurations => ['Release-Internal', 'Release-Alpha']
pod 'Lookback', '1.4.1', :configurations => ['Release-Internal', 'Release-Alpha']
pod 'MRProgress', '~>0.7.0'
pod 'Mixpanel', '2.9.4'
pod 'Reachability', '3.2'
pod 'SVProgressHUD', '~>1.1.3'
pod 'UIDeviceIdentifier', '~> 0.1'
pod 'Crashlytics'
pod 'BuddyBuildSDK', '~> 1.0.11', :configurations => ['Release-Alpha']
pod 'FLAnimatedImage', '~> 1.0'
# ----------------------------
# Forked third party libraries
# ----------------------------
pod 'WordPress-AppbotX', :git => 'https://github.com/wordpress-mobile/appbotx.git', :commit => '479d05f7d6b963c9b44040e6ea9f190e8bd9a47a'
# --------------------
# WordPress components
# --------------------
pod 'Automattic-Tracks-iOS', :git => 'https://github.com/Automattic/Automattic-Tracks-iOS.git', :tag => '0.1.1'
pod 'Gridicons', :git => "https://github.com/Automattic/Gridicons-iOS.git", :commit => "8bd04e18eddaaf36810887c94837571e68f7cc24"
pod 'NSObject-SafeExpectations', '0.0.2'
pod 'NSURL+IDN', '0.3'
pod 'Simperium', '0.8.17'
pod 'WPMediaPicker', '~> 0.10.2'
pod 'WordPress-iOS-Editor', '1.8.1'
pod 'WordPressCom-Analytics-iOS', '0.1.19'
pod 'WordPress-Aztec-iOS', :git => 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS.git', :commit => '7d02c77349245c6e4d3bcdf63a878f90eb4a4e39'
pod 'wpxmlrpc', '~> 0.8'
target :WordPressTest do
inherit! :search_paths
pod 'OHHTTPStubs', '~> 4.6.0'
pod 'OHHTTPStubs/Swift', '~> 4.6.0'
pod 'OCMock', '3.1.2'
pod 'Specta', '1.0.5'
pod 'Expecta', '1.0.5'
pod 'Nimble', '~> 4.0.0'
end
end
target 'WordPressShareExtension' do
end
target 'WordPressTodayWidget' do
end
end
post_install do |installer_representation|
# installer_representation.pods_project.targets.each do |target|
# # See https://github.com/CocoaPods/CocoaPods/issues/3838
# if target.name.end_with?('WordPressCom-Stats-iOS')
# target.build_configurations.each do |config|
# config.build_settings['FRAMEWORK_SEARCH_PATHS'] ||= ['$(inherited)', '$PODS_FRAMEWORK_BUILD_PATH', '$PODS_FRAMEWORK_BUILD_PATH/..']
# end
# end
# end
#
# # Directly set the Targeted Device Family
# # See https://github.com/CocoaPods/CocoaPods/issues/2292
# installer_representation.pods_project.build_configurations.each do |config|
# config.build_settings['TARGETED_DEVICE_FAMILY'] = '1,2'
# end
# Specify Swift 2.3 Setting!
#
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '2.3'
end
end
end