forked from AlphaWallet/alpha-wallet-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AlphaWalletENS.podspec
29 lines (27 loc) · 1.34 KB
/
AlphaWalletENS.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
#
# Be sure to run `pod spec lint AlphaWalletENS.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 = "AlphaWalletENS"
spec.version = "1.0.0"
spec.summary = "AlphaWallet ENS functionality"
spec.description = "ENS functionality"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Hwee-Boon Yar" => "[email protected]" }
spec.social_media_url = "https://twitter.com/hboon"
spec.homepage = "https://github.com/AlphaWallet/alpha-wallet-ios/tree/master/modules/AlphaWalletENS"
spec.ios.deployment_target = '13.0'
spec.swift_version = '5.0'
spec.platform = :ios, "13.0"
spec.source = { :git => '[email protected]:AlphaWallet/alpha-wallet-ios.git', :tag => "#{spec.version}" }
spec.source_files = 'modules/AlphaWalletENS/AlphaWalletENS/**/*.{h,m,swift}'
spec.pod_target_xcconfig = { 'SWIFT_OPTIMIZATION_LEVEL' => '-Owholemodule' }
spec.dependency 'AlphaWalletAddress'
spec.dependency 'PromiseKit'
spec.dependency 'AlphaWalletWeb3'
spec.dependency 'AlphaWalletCore'
end