-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathPodfile
27 lines (23 loc) · 801 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
platform :ios, '13.0'
source 'https://github.com/CocoaPods/Specs.git'
workspace 'SwiftSyft'
use_frameworks!
target 'SwiftSyft_Example' do
project 'Example/SwiftSyft.xcodeproj'
pod 'OpenMinedSwiftSyft', :path => '.', :testspecs => ['Tests']
pod 'SwiftLint', '~> 0.38.0'
pod 'Charts'
# Not included until https://github.com/CocoaPods/CocoaPods/issues/9473 is resolved
# target 'SwiftSyft_Tests' do
# inherit! :search_paths
# end
end
target 'SwiftSyft-Background' do
project 'Example-Background/SwiftSyft-Background.xcodeproj'
pod 'OpenMinedSwiftSyft', :path => '.', :testspecs => ['Tests']
pod 'SwiftLint', '~> 0.38.0'
# Not included until https://github.com/CocoaPods/CocoaPods/issues/9473 is resolved
# target 'SwiftSyft_Tests' do
# inherit! :search_paths
# end
end