-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
metamask-ios-sdk.podspec
24 lines (20 loc) · 1.16 KB
/
metamask-ios-sdk.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
Pod::Spec.new do |s|
s.name = 'metamask-ios-sdk'
s.version = '0.8.10'
s.summary = 'Enable users to easily connect with their MetaMask Mobile wallet.'
s.swift_version = '5.5'
s.description = <<-DESC
The iOS MetaMask SDK enables native iOS apps to interact with the Ethereum blockchain via the MetaMask Mobile wallet.
DESC
s.homepage = 'https://github.com/MetaMask/metamask-ios-sdk'
s.license = { :type => 'Copyright ConsenSys Software Inc. 2022. All rights reserved.', :file => 'LICENSE' }
s.author = { 'MetaMask' => '[email protected]' }
s.source = { :git => 'https://github.com/MetaMask/metamask-ios-sdk.git', :tag => s.version.to_s }
s.ios.deployment_target = '15.0'
s.source_files = 'Sources/metamask-ios-sdk/Classes/**/*'
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
s.vendored_frameworks = 'Sources/metamask-ios-sdk/Frameworks/Ecies.xcframework'
s.dependency 'Starscream', '4.0.6'
s.dependency 'Socket.IO-Client-Swift', '~> 16.1.0'
end