-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
executable file
·34 lines (29 loc) · 828 Bytes
/
Copy pathPodfile
File metadata and controls
executable file
·34 lines (29 loc) · 828 Bytes
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
workspace 'ModuleWorkSpace'
project 'CommonFrameWork/CommonFrameWork.xcodeproj'
project 'MainProj/MainProj.xcodeproj'
project 'Demo1FrameWork/Demo1FrameWork.xcodeproj'
project 'Demo2FrameWork/Demo2FrameWork.xcodeproj'
target :'MainProj' do
platform :ios, '7.0'
pod 'AFNetworking'
pod 'SDWebImage'
project 'MainProj/MainProj.xcodeproj'
end
target :'CommonFrameWork' do
platform :ios, '7.0'
pod 'AFNetworking'
pod 'SDWebImage'
project 'CommonFrameWork/CommonFrameWork.xcodeproj'
end
target :'Demo1FrameWork' do
platform :ios, '7.0'
pod 'AFNetworking'
pod 'SDWebImage'
project 'Demo1FrameWork/Demo1FrameWork.xcodeproj'
end
target :'Demo2FrameWork' do
platform :ios, '7.0'
pod 'AFNetworking'
pod 'SDWebImage'
project 'Demo2FrameWork/Demo2FrameWork.xcodeproj'
end