# # Be sure to run `pod lib lint AlphaWalletAddress.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 = 'AlphaWalletAddress' s.version = '1.0.2' s.summary = 'AlphaWallet Address library' s.description = <<-DESC Lightweight library representing the AlphaWallet Address functionality DESC s.homepage = "https://github.com/AlphaWallet/alpha-wallet-ios/tree/master/modules/AlphaWalletAddress" s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'Vladyslav Shepitko' => 'vladyslav.shepitko@gmail.com' } s.ios.deployment_target = '13.0' s.swift_version = '5.0' s.platform = :ios, "13.0" s.source = { :git => 'git@github.com:AlphaWallet/alpha-wallet-ios.git', :tag => "#{s.version}" } s.source_files = 'modules/AlphaWalletAddress/AlphaWalletAddress/**/*.{h,m,swift}' s.pod_target_xcconfig = { 'SWIFT_OPTIMIZATION_LEVEL' => '-Owholemodule' } s.frameworks = 'Foundation' #Should not include any more of our own pods as dependency unless that pod is never going to have a dependency on this pod s.dependency 'AlphaWalletCore' s.dependency 'EthereumAddress' s.dependency 'TrustKeystore' end