-
Notifications
You must be signed in to change notification settings - Fork 11
/
HyperwalletSDK.podspec
21 lines (20 loc) · 1.08 KB
/
HyperwalletSDK.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |spec|
spec.name = 'HyperwalletSDK'
spec.version = '1.0.0-beta20'
spec.summary = 'Hyperwallet Core SDK for iOS to integrate with Hyperwallet Platform'
spec.homepage = 'https://github.com/hyperwallet/hyperwallet-ios-sdk'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { 'Hyperwallet Systems Inc' => 'devsupport@hyperwallet.com' }
spec.platform = :ios
spec.ios.deployment_target = '13.0'
spec.source = { :git => 'https://github.com/hyperwallet/hyperwallet-ios-sdk.git', :tag => "#{spec.version}" }
spec.source_files = 'Sources/**/*.swift'
spec.requires_arc = true
spec.swift_version = '5.0'
spec.resource_bundles = { 'HyperwalletSDK' => ['Sources/PrivacyInfo.xcprivacy'] }
spec.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/**/*.swift'
test_spec.resources = 'Tests/**/*.json'
test_spec.dependency 'Hippolyte'
end
end