forked from rhummelmose/BluetoothKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BluetoothKit.podspec
19 lines (19 loc) · 919 Bytes
/
BluetoothKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'BluetoothKit'
s.version = '0.4.0'
s.license = { :type => 'MIT' }
s.homepage = 'https://github.com/rasmusth/BluetoothKit'
s.authors = { 'Rasmus Taulborg Hummelmose' => '[email protected]' }
s.summary = 'Easily communicate between iOS devices using BLE.'
s.source = { :git => 'https://github.com/rasmusth/BluetoothKit.git', :tag => "#{s.version}" }
s.source_files = 'Source/**/*.{swift}', 'Umbrella/**/*.{h}'
s.requires_arc = true
s.osx.deployment_target = '10.10'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.tvos.exclude_files = 'Source/BKCBPeripheralManagerDelegateProxy.swift',
'Source/BKPeripheral.swift',
'Source/BKPeripheralConfiguration.swift',
'Source/BKPeripheralStateMachine.swift',
'Source/BKRemoteCentral.swift'
end