-
Notifications
You must be signed in to change notification settings - Fork 373
/
AlphaWalletTrustWalletCoreExtensions.podspec
34 lines (29 loc) · 1.54 KB
/
AlphaWalletTrustWalletCoreExtensions.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
#
# Be sure to run `pod lib lint AlphaWalletTrustWalletCoreExtensions.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 = 'AlphaWalletTrustWalletCoreExtensions'
s.version = '1.0.0'
s.summary = 'AlphaWallet extensions library around TrustWalletCore'
s.description = <<-DESC
Lightweight library representing the AlphaWallet extensions library around TrustWalletCore
DESC
s.homepage = "https://github.com/AlphaWallet/alpha-wallet-ios/tree/master/modules/AlphaWalletTrustWalletCoreExtensions"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Hwee-Boon Yar" => "[email protected]" }
s.ios.deployment_target = '13.0'
s.swift_version = '5.0'
s.platform = :ios, "13.0"
s.source = { :git => '[email protected]:AlphaWallet/alpha-wallet-ios.git', :tag => "#{s.version}" }
s.source_files = 'modules/AlphaWalletTrustWalletCoreExtensions/AlphaWalletTrustWalletCoreExtensions/**/*.{h,m,swift}'
s.pod_target_xcconfig = { 'SWIFT_OPTIMIZATION_LEVEL' => '-Owholemodule' }
s.frameworks = 'Foundation'
#Should not include any of our own pods as dependency unless that pod is never going to have a dependency on this pod
s.dependency 'AlphaWalletCore'
s.dependency 'BigInt'
s.dependency 'TrustWalletCore', '2.6.34'
end