-
Notifications
You must be signed in to change notification settings - Fork 76
/
DIDKit.podspec
27 lines (25 loc) · 1.16 KB
/
DIDKit.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
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
# Run `pod lib lint DIDKit.podspec' to validate before publishing.
#
Pod::Spec.new do |s|
s.name = 'DIDKit'
s.version = '0.2.1'
s.summary = 'DIDKit Swift Wrapper'
s.description = <<-DESC
DIDKit provides Verifiable Credential and Decentralized Identifier
functionality across different platforms.
DESC
s.homepage = 'https://github.com/spruceid/didkit'
s.license = { :type => 'Apache 2.0', :file => './LICENSE' }
s.author = { 'Spruce Systems, Inc.' => '[email protected]' }
s.source = { :git => 'https://github.com/spruceid/didkit.git', :tag => "v#{s.version}" }
s.source_files = 'lib/ios/Sources/**/*'
s.public_header_files = 'lib/ios/Sources/**/*.h'
s.static_framework = true
s.vendored_libraries = "lib/ios/**/*.a"
s.platform = :ios, '11.0'
s.swift_versions = '5'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end