-
Notifications
You must be signed in to change notification settings - Fork 52
/
CoreBluetoothMock.podspec
27 lines (23 loc) · 1.13 KB
/
CoreBluetoothMock.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 = 'CoreBluetoothMock'
s.version = '0.18.0'
s.summary = 'Mocking library for CoreBluetooth.'
s.description = <<-DESC
This is a mocking library for CoreBluetooth framework. Allows to mock a Bluetooth Low Energy
device and test the app on simulator.
DESC
s.homepage = 'https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock'
s.license = { :type => 'BSD 3-Clause', :file => 'LICENSE' }
s.author = { 'Aleksander Nowakowski' => '[email protected]' }
s.source = { :git => 'https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/nordictweets'
s.swift_versions = ['4.2', '5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6', '5.7', '5.8', '5.9']
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.14'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '4.0'
s.source_files = 'CoreBluetoothMock/**/*'
s.resource_bundles = {
'PrivacyInfo' => ['PrivacyInfo.xcprivacy']
}
end