-
Notifications
You must be signed in to change notification settings - Fork 1
/
Proximity.podspec
27 lines (21 loc) · 1.05 KB
/
Proximity.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 |s|
s.name = 'Proximity'
s.version = '0.1.0'
s.summary = 'Detect BLE devices in the immediate vicinity.'
s.description = <<-DESC
Have you ever wanted Airpods-like nearby device notifications?
Using RSSI values, Proximity detects BLE devices in the immediate vicinity. Very likely being held directly up to the BLE peripheral.
DESC
s.homepage = 'https://github.com/fuzz-productions/Proximity'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Eric Kunz' => '[email protected]' }
s.source = { :git => 'https://github.com/fuzz-productions/Proximity.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ericjkunz'
s.ios.deployment_target = '10.0'
s.swift_version = '4.0'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
s.source_files = 'Proximity/Classes/**/*'
s.exclude_files = 'Proximity/**/*.plist'
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'CoreBluetooth'
end