-
Notifications
You must be signed in to change notification settings - Fork 0
/
EosioSwiftReferenceAuthenticatorSignatureProvider.podspec
37 lines (32 loc) · 1.95 KB
/
EosioSwiftReferenceAuthenticatorSignatureProvider.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
30
31
32
33
34
35
36
37
#
# Be sure to run `pod lib lint EosioSwiftReferenceAuthenticatorSignatureProvider.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'EosioSwiftReferenceAuthenticatorSignatureProvider'
s.version = '0.2.0'
s.summary = 'Signature Provider for EOSIO SDK for Swift that relays transactions to the EOSIO Reference Authenticator iOS App.'
s.homepage = 'https://github.com/EOSLaoMao/eosio-swift-reference-ios-authenticator-signature-provider'
s.license = { :type => 'MIT', :text => <<-LICENSE
Copyright (c) 2017-2019 block.one and its contributors. All rights reserved.
LICENSE
}
s.author = { 'Todd Bowden' => '[email protected]',
'Serguei Vinnitskii' => '[email protected]',
'Farid Rahmani' => '[email protected]',
'Brandon Fancher' => '[email protected]',
'Steve McCoole' => '[email protected]',
'Ben Martell' => '[email protected]' }
s.source = { :git => 'https://github.com/EOSLaoMao/eosio-swift-reference-ios-authenticator-signature-provider.git', :tag => "v" + s.version.to_s }
s.swift_version = '5.2'
s.ios.deployment_target = '11.0'
s.source_files = 'EosioSwiftReferenceAuthenticatorSignatureProvider/*.swift'
s.pod_target_xcconfig = { 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
'CLANG_ENABLE_MODULES' => 'YES',
'SWIFT_COMPILATION_MODE' => 'wholemodule',
'ENABLE_BITCODE' => 'YES' }
s.ios.dependency 'EosioSwift', '~> 0.2.1'
end