-
Notifications
You must be signed in to change notification settings - Fork 0
/
HyperSnapInstructions.podspec
27 lines (23 loc) · 1.21 KB
/
HyperSnapInstructions.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 = "HyperSnapInstructions"
s.version = "1.0.1"
s.static_framework = true
s.summary = "HyperVerge's iOS Framework for Instruction screens"
s.description = "Instructions screens for HyperSnapSDK"
s.homepage = "https://github.com/hyperverge/HyperSnapInstructions"
s.author = "HyperVerge"
s.platform = :ios
s.ios.deployment_target = "9.0"
s.license = { :type => 'Custom', :file => 'LICENSE' }
# s.source = { :http => "https://github.com/hyperverge/HyperSnapInstructions/blob/master/HyperSnapSDK.zip?raw=true"}
s.source = { :git => "https://github.com/hyperverge/HyperSnapInstructions.git", :tag => "#{s.version}"}
# s.source_files = 'HyperSnapInstructions.framework/Headers/*.h'
# s.public_header_files = "HyperSnapInstructions.framework/Headers/*.h"
s.ios.vendored_frameworks = "HyperSnapInstructions.xcframework"
# s.resources = { :http => "https://github.com/hyperverge/HyperSnapInstructions/blob/master/HVInstructionsResources.bundle.zip?raw=true" }
s.ios.resource = 'HVInstructionsResources.bundle'
s.swift_version = '5.0'
s.test_spec 'Tests' do |test_spec|
test_spec.dependency 'Result', '~> 5.0'
end
end