-
Notifications
You must be signed in to change notification settings - Fork 1
/
NordicWiFiProvisioner-BLE.podspec
33 lines (27 loc) · 1.48 KB
/
NordicWiFiProvisioner-BLE.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
33
#
# Be sure to run `pod lib lint NordicWiFiProvisioner.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'NordicWiFiProvisioner-BLE'
s.version = '2.1.1'
s.summary = 'Library for provisioning nRF-7 devices to a Wi-Fi network.'
s.description = <<-DESC
This is a library (and an example application) for scanning and provisioning nRF-7 devices to a Wi-Fi network.
It contains all the necessary components to scan for nRF-7 devices, connect to them, read the device's information, scan for Wi-Fi networks and provision them to the device.
DESC
s.homepage = 'https://github.com/NordicSemiconductor/IOS-nRF-Wi-Fi-Provisioner'
s.license = { :type => 'BSD' }
s.author = { "Dinesh Harjani" => "[email protected]", 'Nick Kibish' => '[email protected]' }
s.source = { :git => 'https://github.com/NordicSemiconductor/IOS-nRF-Wi-Fi-Provisioner.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.swift_versions = ['5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6']
s.source_files = 'Sources/NordicWiFiProvisioner-BLE/**/*.swift'
s.frameworks = 'CoreBluetooth'
s.dependency 'SwiftProtobuf'
s.dependency 'CoreBluetoothMock'
end