forked from Polidea/RxBluetoothKit
-
Notifications
You must be signed in to change notification settings - Fork 8
/
RxBluetoothKit_Airthings.podspec
32 lines (25 loc) · 1.6 KB
/
RxBluetoothKit_Airthings.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
31
32
Pod::Spec.new do |s|
s.name = "RxBluetoothKit_Airthings"
s.version = "6.3.2"
s.summary = "Bluetooth library for RxSwift (initially built by Polidea)"
s.description = <<-DESC
RxBluetoothKit is lightweight and easy to use Rx support for CoreBluetooth.
RxBluetoothKit was developed by developers at Polidea and they were acquired [Info](https://pl.linkedin.com/company/polidea)
The developers cannot involve with this project anymore therefore, Airthings ASA forked and maintain this project to support the latest iOS releases.
DESC
s.homepage = "https://github.com/polidea/RxBluetoothKit"
s.license = 'Apache License, Version 2.0.'
s.author = { "Przemysław Lenart" => "[email protected]", "Kacper Harasim" => "[email protected]", "Michał Laskowski" => "[email protected]", "Paweł Janeczek" => "[email protected]", "Bartosz Stelmaszuk" => "[email protected]" }
s.source = { :git => "https://github.com/Airthings/RxBluetoothKit.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/polidea'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.13'
s.watchos.deployment_target = '4.0'
s.tvos.deployment_target = '11.0'
s.swift_version = '5.0'
s.requires_arc = true
s.source_files = 'Source/*.swift'
s.osx.exclude_files = 'Source/RestoredState.swift', 'Source/CentralManager+RestoredState.swift', 'Source/CentralManagerRestoredState.swift'
s.frameworks = 'CoreBluetooth'
s.dependency 'RxSwift', '~> 6.5.0'
end