-
Notifications
You must be signed in to change notification settings - Fork 19
/
Podfile
110 lines (82 loc) · 2.66 KB
/
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
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
platform :ios, '10.0'
use_frameworks!
inhibit_all_warnings!
def shared_testing_pods
pod 'OCMock', '3.3.1'
pod 'RamblerTyphoonUtils/AssemblyTesting', '1.5.0'
end
abstract_target 'MEWconnect' do
# VIPER
pod 'Typhoon', '4.0.7'
# Navigation
pod 'ViperMcFlurryX', :git => 'https://github.com/Foboz/ViperMcFlurryX.git'
# Network
pod 'AFNetworking', :subspecs => ['Reachability', 'Serialization', 'Security', 'NSURLSession']
pod 'Socket.IO-Client-Swift'
# Other
pod 'libextobjc', :git => 'https://github.com/jspahrsummers/libextobjc.git'
pod 'RamblerAppDelegateProxy', '0.0.3'
pod 'zxcvbn-ios'
# Logging & crash reporting
pod 'CocoaLumberjack', '~> 3.4'
# Core Data
pod 'MagicalRecord', '~> 2.3'
# Images & Video
pod 'SDWebImage', '~> 3.7'
# UI
pod 'Nimbus/Models'
pod 'Nimbus/Collections'
pod 'BlockiesSwift'
pod 'YLProgressBar', '~> 3.10.2'
pod 'TTTAttributedLabel', '~> 2.0.0'
pod 'GSKStretchyHeaderView', '~> 1.0.4'
pod 'BEMCheckBox', '~> 1.0.0'
pod 'M13Checkbox', :git => 'https://github.com/Foboz/M13Checkbox.git'
pod 'DZNWebViewController', :git => 'https://github.com/Foboz/DZNWebViewController.git'
pod 'UITextView+Placeholder', '~> 1.2.0'
pod 'CHIPageControl/Chimayo', '= 0.1.6'
pod 'MnemonicsView', :path => 'DevelopPods/MnemonicsView'
pod 'lottie-ios', '~> 2.5.3'
# Ethereum
pod 'web3swift', :git => 'https://github.com/Foboz/web3swift.git', :branch => 'v200_mew'
pod 'GoogleWebRTC', '=1.1.26675'
# Cryptographic
pod 'TrezorCrypto'#, :git => 'https://github.com/Foboz/trezor-crypto-ios.git'
# Keychain
pod 'UICKeyChainStore', '~> 2.1'
# Data mapping
pod 'EasyMapping', '~> 0.15'
target 'MyEtherWallet-iOS' do
#VIPER
pod 'RamblerTyphoonUtils/AssemblyCollector', '1.5.0'
end
target 'MyEtherWallet-iOSTests' do
inherit! :search_paths
# Pods for testing
shared_testing_pods
end
target 'MyEtherWallet-iOS-Beta' do
#VIPER
shared_testing_pods
end
target 'MyEtherWallet-iOSUITests' do
inherit! :search_paths
# Pods for testing
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if target.name == 'M13Checkbox'
config.build_settings['SWIFT_VERSION'] = '4.2'
else
config.build_settings['SWIFT_VERSION'] = '4.0'
end
if target.name == 'RamblerTyphoonUtils-AssemblyTesting' ||
target.name == 'RamblerTyphoonUtils-AssemblyCollector-AssemblyTesting' ||
target.name == 'WebRTC'
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
end