-
Notifications
You must be signed in to change notification settings - Fork 123
/
nRFMeshProvision.podspec
24 lines (24 loc) · 1.19 KB
/
nRFMeshProvision.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
Pod::Spec.new do |s|
s.name = 'nRFMeshProvision'
s.module_name = 'NordicMesh'
s.version = '4.2.0'
s.summary = 'A Bluetooth Mesh library'
s.description = <<-DESC
nRF Mesh is a Bluetooth mesh compliant library supporting features such as provisioning, configuration and control of Bluetooth mesh nodes.
DESC
s.homepage = 'https://github.com/NordicSemiconductor/IOS-nRF-Mesh-Library'
s.license = { :type => 'BSD-3-Clause', :file => 'LICENSE' }
s.author = { 'Aleksander Nowakowski' => '[email protected]' }
s.source = { :git => 'https://github.com/NordicSemiconductor/IOS-nRF-Mesh-Library.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/nordictweets'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.static_framework = true
s.swift_versions = ['5.5', '5.6', '5.7', '5.8', '5.9']
s.source_files = ['Library/**/*.swift', 'Library/Documentation.docc/*.md']
s.resource_bundles = {
'PrivacyInfo' => ['Library/Resources/PrivacyInfo.xcprivacy']
}
s.dependency 'CryptoSwift', '= 1.8.1'
s.frameworks = 'CoreBluetooth'
end