forked from dotintent/MultiPlatformBleAdapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MultiplatformBleAdapter.podspec
27 lines (20 loc) · 1.1 KB
/
MultiplatformBleAdapter.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
Pod::Spec.new do |spec|
spec.name = "MultiplatformBleAdapter"
spec.version = "2.0.0"
spec.summary = "An adapter for RxBluetoothKit that exposes consist API to crossplatform libraries"
spec.description = <<-DESC
An adapter for RxBluetoothKit that exposes consist API to crossplatform libraries
DESC
spec.homepage = "https://github.com/KamilNatonek/MultiPlatformBleAdapter"
spec.license = "Apache License, Version 2.0."
spec.author = { "Pawel Scibek" => "pawel.scibek@polidea.com", "Tomasz Bogusz" => "tomasz.bogusz@polidea.com", "Przemyslaw Lenart" => "przemyslaw.lenart@polidea.com" }
spec.social_media_url = "https://twitter.com/polidea"
spec.platform = :ios
spec.ios.deployment_target = "8.0"
spec.swift_versions = ['4.0', '4.2', '5.0']
spec.source = { :git => "https://github.com/KamilNatonek/MultiPlatformBleAdapter.git", :tag => "#{spec.version}" }
spec.source_files = "iOS/RxBluetoothKit/**/*.{h,m,swift}"
spec.exclude_files = 'android/**/*'
spec.frameworks = 'CoreBluetooth'
spec.requires_arc = true
end