forked from NordicSemiconductor/IOS-CoreBluetooth-Mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CoreBluetoothMock.podspec
29 lines (24 loc) · 1.34 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
28
29
Pod::Spec.new do |s|
s.name = 'CoreBluetoothMock'
s.version = '0.13.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' => 'aleksander.nowakowski@nordicsemi.no' }
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.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.swift_versions = ['4.2', '5.0', '5.1', '5.2', '5.3', '5.4', '5.5']
s.pod_target_xcconfig = { 'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES' }
s.source_files = 'CoreBluetoothMock/Classes/**/*'
# Regarding the lines below see: https://stackoverflow.com/a/63955114/2115352
# s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
# s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end