-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHandpointSDK.podspec
More file actions
executable file
·23 lines (23 loc) · 972 Bytes
/
HandpointSDK.podspec
File metadata and controls
executable file
·23 lines (23 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "HandpointSDK"
s.version = "4.0.2"
s.summary = "HandpointSDK for iOS"
s.description = <<-DESC
For detailed information, please see Handpoint documentation and Readme in https://www.handpoint.com/docs/device/iOS/
DESC
s.homepage = "https://www.handpoint.com/docs/device/iOS/"
s.license = { :type => 'Commercial', :file => 'LICENSE' }
s.author = { "Handpoint" => "hi@handpoint.com" }
s.source = { :git => "https://github.com/handpoint/HandpointSDK-iOS.git", :tag => "#{s.version}"} #"" }
s.platform = :ios, '12.0'
s.source_files = [
'Library/heft/*.{h,m}',
'Library/heft/*.mm',
'Library/heft/Shared/**/*.{h,m}',
'Library/heft/Shared/**/*.mm'
]
s.public_header_files = 'Library/heft/Shared/api/*.h'
s.framework = 'ExternalAccessory'
s.library = 'z', 'c++'
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC -lc++'}
end