forked from Automattic/simplenote-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
50 lines (42 loc) · 1.02 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
source 'https://github.com/CocoaPods/Specs.git'
inhibit_all_warnings!
use_frameworks!
platform :ios, '10.0'
workspace 'Simplenote.xcworkspace'
plugin 'cocoapods-repo-update'
# Main
#
abstract_target 'Automattic' do
# Shared Dependencies
#
pod 'SAMKeychain', '1.5.2'
# Main Target
#
target 'Simplenote' do
# Third Party
#
pod '1PasswordExtension', '1.8.5'
pod 'Gridicons', '~> 0.18'
pod 'HockeySDK', '5.1.4'
pod 'SVProgressHUD', '2.2.5'
# Automattic
#
pod 'Automattic-Tracks-iOS', '~> 0.4'
# pod 'Automattic-Tracks-iOS', :git => 'https://github.com/Automattic/Automattic-Tracks-iOS.git', :branch => 'add/support-for-tracking-crashes'
pod 'Simperium', '~> 0.8.23'
pod 'WordPress-AppbotX', :git => 'https://github.com/wordpress-mobile/appbotx.git', :tag => '1.0.7'
pod 'WordPress-Ratings-iOS', '0.0.2'
# Testing Target
#
target 'SimplenoteTests' do
inherit! :search_paths
end
end
# Extension Target
#
target 'SimplenoteShare' do
# Third Party
#
pod 'ZIPFoundation', '~> 0.9.9'
end
end