-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUITestsSDK.podspec
More file actions
36 lines (29 loc) · 1.25 KB
/
UITestsSDK.podspec
File metadata and controls
36 lines (29 loc) · 1.25 KB
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
#
# Be sure to run `pod lib lint UITestsSDK.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'UITestsSDK'
s.version = '0.1.0'
s.summary = 'A shared UI Tests framework.'
s.description = <<-DESC
A shared UI Tests framework used to do automation tests.
DESC
s.homepage = 'https://github.com/prasadpamidi/UITestsSDK'
s.license = { :type => 'TBD', :text => 'TBD' }
s.author = { 'Prasad Pamidi' => 'prasadpamidi@gmail.com' }
s.source = { :git => 'https://github.com/prasadpamidi/UITestsSDK.git', :tag => 'v' + s.version.to_s }
s.ios.deployment_target = '12.0'
s.swift_version = '5.0'
s.source_files = 'UITestsSDK/Classes/**/*'
s.dependency 'CocoapodSubspecSample'
# Pod install is only going through, if all subspecs in the `Podfile` matches the subspec deps in the dependent podspec
# s.dependency 'CocoapodSubspecSample/FeatureTwo'
s.xcconfig = {
"SWIFT_OBJC_INTERFACE_HEADER_NAME" => "",
"SWIFT_PRECOMPILE_BRIDGING_HEADER" => "NO"
}
end