-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
32 lines (28 loc) · 858 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
source 'https://github.com/CocoaPods/Specs.git'
workspace 'JSZVCR.xcworkspace'
xcodeproj 'Example/JSZVCR.xcodeproj'
#use_frameworks!
target 'JSZVCR_Tests', :exclusive => true do
platform :ios, '8.0'
xcodeproj 'Example/JSZVCR.xcodeproj'
pod "JSZVCR", :path => "."
pod 'AFNetworking', '~>3.0'
end
target 'JSZVCR-Example-OSX', :exclusive => true do
platform :osx, '10.9'
xcodeproj 'Example/JSZVCR.xcodeproj'
pod "JSZVCR", :path => "."
pod 'AFNetworking', '~>3.0'
end
target 'JSZVCR-Example-tvOS', :exclusive => true do
platform :tvos, '9.0'
xcodeproj 'Example/JSZVCR.xcodeproj'
pod "JSZVCR", :path => "."
pod 'AFNetworking', '~>3.0'
end
target 'CoreTests', :exclusive => true do
platform :ios, '8.0'
xcodeproj 'Example/JSZVCR.xcodeproj'
pod "JSZVCR/Core", :path => "."
pod 'AFNetworking', '~>3.0'
end