-
Notifications
You must be signed in to change notification settings - Fork 105
/
SmartDeviceLink.podspec
30 lines (24 loc) · 1.04 KB
/
SmartDeviceLink.podspec
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.1"
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" => "[email protected]" }
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