summaryrefslogtreecommitdiff
path: root/SmartDeviceLink.podspec
blob: 98ee685a40db003ca78b1577bc643d5154607fd3 (plain)
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 |s|

s.name         = "SmartDeviceLink"
s.version      = "7.6.0"
s.summary      = "Connect your app with cars!"
s.homepage     = "https://github.com/smartdevicelink/SmartDeviceLink-iOS"
s.license      = { :type => "New BSD", :file => "LICENSE" }
s.author       = { "SmartDeviceLink Team" => "developer@smartdevicelink.com" }
s.platform     = :ios, "10.0"
s.dependency     'BiSON', '~> 1.2'
s.source       = { :git => "https://github.com/smartdevicelink/sdl_ios.git", :tag => s.version.to_s }
s.requires_arc = true
s.swift_version = '5.2'

s.default_subspec = 'Default'

s.subspec 'Default' do |sdefault|
sdefault.source_files = 'SmartDeviceLink/public/*.{h,m}', 'SmartDeviceLink/private/*.{h,m}'
sdefault.resource_bundles = { 'SmartDeviceLink' => ['SmartDeviceLink/Assets/**/*'] }

sdefault.public_header_files = 'SmartDeviceLink/public/*.h'
sdefault.private_header_files = 'SmartDeviceLink/private/*.h'
end

s.subspec 'Swift' do |sswift|
sswift.dependency 'SmartDeviceLink/Default'
sswift.source_files = 'SmartDeviceLinkSwift/*.swift'
end

end