-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
34 lines (24 loc) · 1011 Bytes
/
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
source 'https://github.com/CocoaPods/Specs.git' # 指定Specs源
workspace 'DPPageState' # 指定Workspace
platform :ios, '9.0' # 指定平台和最低版本
inhibit_all_warnings! # 无视所有警告
use_frameworks! # 使用framework代替静态库
pod 'Alamofire'
pod 'DPLog'
target 'DPPageStateExample' do # target 对应Xcode中的target
project 'DPPageStateExample/DPPageStateExample' # 指定Target所在的Project
#target 'DPPageStateControllerExampleTests' do
# inherit! :search_paths # 子target继承父target
#end
end
target 'DPPageState' do # target 对应Xcode中的target
project 'DPPageState/DPPageState' # 指定Target所在的Project
#target 'DPPageStateControllerTests' do
# inherit! :search_paths # 子target继承父target
#end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
puts target.name
end
end