X Tutup
# # 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.' => 'hello@spruceid.com' } 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
X Tutup