-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path2hire-BLEIntSDK.podspec
More file actions
26 lines (21 loc) · 1.13 KB
/
2hire-BLEIntSDK.podspec
File metadata and controls
26 lines (21 loc) · 1.13 KB
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
Pod::Spec.new do |s|
s.name = '2hire-BLEIntSDK'
s.version = '0.1.8'
s.summary = 'SDK for BLE integratation'
s.description = <<-DESC
2hire-BLEIntSDK is an SDK to interact via Bluetooth with 2hireBox powered vehicles.
For more info check https://2hire.io
DESC
s.homepage = 'https://github.com/2hire/BLEIntSDK/blob/v' + String(s.version.to_s) + '/packages/sdk/ios/core'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { '2hire' => 'info@2hire.io' }
s.source = { :git => 'https://github.com/2hire/BLEIntSDK.git', :tag => 'v' + String(s.version.to_s) }
s.ios.deployment_target = '15.0'
s.swift_versions = '5'
s.module_name = "BLEIntSDK"
s.source_files = 'packages/sdk/ios/core/BLEIntSDK/Classes/**/*'
s.vendored_frameworks = "packages/sdk/ios/frameworks/K1.xcframework", "packages/sdk/ios/frameworks/secp256k1.xcframework", "packages/sdk/ios/frameworks/Logging.xcframework"
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'packages/sdk/ios/core/BLEIntSDK/Tests/**/*'
end
end