forked from AlphaWallet/alpha-wallet-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AlphaWalletFoundation.podspec
53 lines (50 loc) · 2.38 KB
/
AlphaWalletFoundation.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#
# Be sure to run `pod spec lint AlphaWalletFoundation.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "AlphaWalletFoundation"
spec.version = "1.0.0"
spec.summary = "AlphaWallet functionality"
spec.description = "Core wallet functionality"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Vladyslav Shepitko" => "vladyslav.shepitko@gmail.com" }
spec.homepage = "https://github.com/AlphaWallet/alpha-wallet-ios/tree/master/modules/AlphaWalletFoundation"
spec.ios.deployment_target = '13.0'
spec.swift_version = '4.2'
spec.platform = :ios, "13.0"
spec.source = { :git => 'git@github.com:AlphaWallet/alpha-wallet-ios.git', :tag => "#{spec.version}" }
spec.source_files = 'modules/AlphaWalletFoundation/AlphaWalletFoundation/**/*.{h,m,swift}'
spec.resource_bundles = {'AlphaWalletFoundation' => ['modules/AlphaWalletFoundation/AlphaWalletFoundation/**/*.{graphql,json}'] }
spec.pod_target_xcconfig = { 'SWIFT_OPTIMIZATION_LEVEL' => '-Owholemodule' }
spec.dependency 'BigInt', '~> 3.1'
spec.dependency 'JSONRPCKit', '~> 2.0.0'
spec.dependency 'APIKit', '5.1.0'
spec.dependency 'RealmSwift', '10.27.0'
spec.dependency 'CryptoSwift', '~> 1.4'
spec.dependency 'AlphaWalletWeb3Provider'
spec.dependency 'TrezorCrypto'
spec.dependency 'TrustKeystore'
spec.dependency 'SwiftyJSON', '5.0.0'
spec.dependency 'AlphaWalletWeb3'
spec.dependency 'PromiseKit/CorePromise'
spec.dependency 'Kanna'
spec.dependency 'EthereumABI'
spec.dependency 'BlockiesSwift'
spec.dependency 'PaperTrailLumberjack/Swift'
spec.dependency 'AlphaWalletLogger'
spec.dependency 'AlphaWalletAddress'
spec.dependency 'AlphaWalletCore'
spec.dependency 'AlphaWalletGoBack'
spec.dependency 'AlphaWalletENS'
spec.dependency 'AlphaWalletHardwareWallet'
spec.dependency 'AlphaWalletOpenSea'
spec.dependency 'AlphaWalletShareExtensionCore'
spec.dependency 'AlphaWalletTrustWalletCoreExtensions'
spec.dependency 'Apollo', '0.53.0'
spec.dependency 'CombineExt', '1.8.0'
spec.dependency 'SwiftProtobuf', '~> 1.18.0'
end