-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobilesdk.podspec
More file actions
30 lines (27 loc) · 1.28 KB
/
mobilesdk.podspec
File metadata and controls
30 lines (27 loc) · 1.28 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
Pod::Spec.new do |spec|
spec.name = 'mobilesdk'
spec.version = '0.4.0'
spec.homepage = 'https://github.com/persado/eapi-mobile-sdk'
spec.source = { :git => "Not Published", :tag => "Cocoapods/#{spec.name}/#{spec.version}" }
spec.authors = 'Maria Makantasi => maria.makantasi@persado.com'
spec.license = ''
spec.summary = 'Mobilesdk is an api client for persadoAPI for serving and tracking'
spec.libraries = "c++"
spec.module_name = "#{spec.name}_umbrella"
spec.subspec 'Debug' do |ss|
ss.ios.deployment_target = '16.1'
ss.vendored_frameworks = 'frameworks/debug/mobilesdk.framework'
end
spec.subspec 'DebugSimulator' do |ss|
ss.ios.deployment_target = '16.1'
ss.vendored_frameworks = 'frameworks/debug/simulator/mobilesdk.framework'
end
spec.subspec 'Release' do |ss|
ss.ios.deployment_target = '16.1'
ss.vendored_frameworks = 'frameworks/release/mobilesdk.framework'
end
spec.subspec 'ReleaseSimulator' do |ss|
ss.ios.deployment_target = '16.1'
ss.vendored_frameworks = 'frameworks/release/simulator/mobilesdk.framework'
end
end