-
Notifications
You must be signed in to change notification settings - Fork 329
/
Podfile
54 lines (46 loc) · 1.11 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
def library
pod 'ICSMainFramework', :path => "./Library/ICSMainFramework/"
pod 'KeychainAccess', '~> 3.1.1'
end
def model
pod 'RealmSwift', '~> 10'
end
target "iShadowsocksR" do
pod 'Aspects', :path => "./Library/Aspects/"
pod 'Cartography', '~> 3.0.4'
pod 'AsyncSwift'
pod 'SwiftColor'
pod 'MBProgressHUD'
pod 'ICDMaterialActivityIndicatorView', '~> 0.1.0'
pod 'ICSPullToRefresh', '~> 0.6'
pod 'ISO8601DateFormatter', '~> 0.8'
pod 'ObjectMapper'
pod 'PSOperations', '~> 5.0'
library
model
end
target "TodayWidget" do
pod 'Cartography', '~> 3.0.4'
pod 'SwiftColor'
library
model
end
target "PotatsoLibrary" do
library
model
end
target "PotatsoModel" do
model
end
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
end
end
end
end