-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
27 lines (24 loc) · 787 Bytes
/
Podfile
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
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'SmartWallet' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for SmartWallet
pod 'Tabman', '~> 2.6'
pod 'Starscream', '~> 3.1.1'
pod 'JGProgressHUD'
pod 'Firebase/Crashlytics'
pod 'Firebase/Analytics'
pod 'MaterialComponents/Snackbar'
pod 'MaterialComponents/TextFields'
pod 'TrezorCrypto', '~> 0.0.9', inhibit_warnings: true
pod 'KeychainAccess', '~> 4.1.0'
pod 'web3.swift', '~> 0.5.0'
target 'SmartWalletTests' do
# Pods for testing
pod 'TrezorCrypto', '~> 0.0.9', inhibit_warnings: true
pod 'KeychainAccess', '~> 4.1.0'
pod 'web3.swift', '~> 0.5.0'
inherit! :search_paths
end
end